import { PropsWithChildren } from 'react';
export type DrawerProps = {
    title?: string | null;
    open: boolean;
    onClose?(): void;
};
export declare const Drawer: ({ title, open, onClose, children, }: PropsWithChildren<DrawerProps>) => import("react").ReactPortal | null;
