Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `rn-swipeable-panel@1.2.7` for the project I'm working on. <!-- 🔺️🔺️🔺️ PLEASE REPLACE THIS BLOCK with a description of your problem, and any other relevant context 🔺️🔺️🔺️ --> Here is the diff that solved my problem: ```diff diff --git a/node_modules/rn-swipeable-panel/dist/Panel.d.ts b/node_modules/rn-swipeable-panel/dist/Panel.d.ts index 0368e4c..19c7052 100644 --- a/node_modules/rn-swipeable-panel/dist/Panel.d.ts +++ b/node_modules/rn-swipeable-panel/dist/Panel.d.ts @@ -1,4 +1,4 @@ -import { Component } from 'react'; +import React, { Component } from 'react'; import { Animated, ScrollViewProps } from 'react-native'; declare type SwipeablePanelProps = { isActive: boolean; @@ -19,6 +19,7 @@ declare type SwipeablePanelProps = { barContainerStyle?: object; allowTouchOutside?: boolean; scrollViewProps?: ScrollViewProps; + children: React.ReactElement; }; declare type SwipeablePanelState = { status: number; ``` <em>This issue body was [partially generated by patch-package](https://github.com/ds300/patch-package/issues/296).</em>