import type { ReactNode } from "react"; import React from "react"; interface DrawerProps { readonly id?: string; readonly children: ReactNode | ReactNode[]; readonly title: string; /** * @default true */ readonly open?: boolean; onRequestClose(): void; } export declare function Drawer({ title, children, open, onRequestClose, id, }: DrawerProps): React.JSX.Element; export {};