import React from 'react'; import { ItemProps } from './components/bottom-sheet-header'; export type BottomSheetProps = { children?: React.ReactNode; onClose: () => void; onTouchStart?: () => void; open: boolean; testID?: string; title: string; zIndex?: number; height?: React.CSSProperties['height']; leftItemProps?: ItemProps; contentStyle?: React.CSSProperties; }; declare const BottomSheet: ({ children, onClose, open, testID, title, leftItemProps, height, zIndex, contentStyle, }: BottomSheetProps) => React.JSX.Element; export default BottomSheet;