import type { ReactNode } from 'react'; import type { Insets, StyleProp, ViewStyle } from 'react-native'; import type Animated from 'react-native-reanimated'; import type { BottomSheetProps } from '../bottomSheet/types'; export interface BottomSheetContainerProps extends Partial< Pick > { containerHeight: Animated.SharedValue; containerOffset: Animated.SharedValue; shouldCalculateHeight?: boolean; style?: StyleProp; children: ReactNode; }