import { ReactNode } from 'react' import { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native' export interface IBottomSheetModalStyles { rootContainer?: StyleProp headerContainer?: StyleProp content?: StyleProp title?: StyleProp closeButton?: StyleProp closeButtonIcon?: StyleProp contentContainer?: StyleProp } export interface IBottomSheetModalTexts { title?: string } export interface IBottomSheetModalProps { title?: string onClose: () => void content: ReactNode contentHeight?: number styles?: IBottomSheetModalStyles texts?: IBottomSheetModalTexts }