import type { ViewProps } from 'react-native'; import type { BottomSheetVariables } from '../../types'; import type { BottomSheetProps } from '../bottomSheet'; export interface BottomSheetBackgroundProps extends Pick, BottomSheetVariables {} export type BottomSheetBackgroundContainerProps = Pick< BottomSheetProps, 'backgroundComponent' | 'backgroundStyle' > & BottomSheetBackgroundProps;