import * as React from 'react'; type Props = React.PropsWithChildren<{ open: boolean; onClose: () => void; title?: string | string[]; disableCustomScrollbar?: boolean; keepMounted?: boolean; className?: string; }>; declare const MdBottomDrawer: React.FC; export default MdBottomDrawer;