import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { SharedValue } from 'react-native-reanimated'; import type { ContainerLayoutState, LayoutState } from '../../types'; import type { BottomSheetProps } from '../bottomSheet/types'; export interface BottomSheetHostingContainerProps extends Partial< Pick > { containerLayoutState?: SharedValue; layoutState?: SharedValue; shouldCalculateHeight?: boolean; style?: StyleProp; children?: ReactNode; }