import type { DrawerProps } from './types'; import { DrawerFooter } from './DrawerFooter'; import { DrawerHeader } from './DrawerHeader'; export declare const Drawer: { (props: DrawerProps): React.ReactElement | null; Header: typeof DrawerHeader; Footer: typeof DrawerFooter; };