import React, { type FC, forwardRef } from 'react'; import type { SimultaneousGesture } from 'react-native-gesture-handler'; import { BottomSheetDraggableScrollable } from './BottomSheetDraggableScrollable'; interface ScrollableContainerProps { nativeGesture?: SimultaneousGesture; // biome-ignore lint/suspicious/noExplicitAny: 🤷‍♂️ ScrollableComponent: FC; } export const ScrollableContainer = forwardRef( function ScrollableContainer( { nativeGesture, ScrollableComponent, ...rest }, ref ) { return ( ); } );