import { default as React } from 'react'; interface BottomSheetBaseProps { allowScroll?: boolean; children: any; height?: number | string; isMobile?: boolean; isOpen: boolean; onClose?: () => void; showBackground?: boolean; width?: number | string; } export declare const BottomSheet: React.FC; export {};