import { Dispatch, ReactNode, SetStateAction } from 'react'; import { DialogProps } from '@mui/material/Dialog'; type BottomSheetDialogProps = Omit & { setOpen: Dispatch>; title: ReactNode; content: ReactNode; onClose?: () => void; }; export declare const BottomSheetDialog: (props: BottomSheetDialogProps) => import("react/jsx-runtime").JSX.Element; export {};