import { HTMLAttributes } from "react"; export { DrawerGroup as DrawerExpandableGroup } from "./Group"; export { DrawerItem } from "./Item"; export { DrawerScrim } from "./Scrim"; export { DrawerTitle } from "./Title"; interface Props { /** * The current state of the drawer * @default false */ state: [boolean, (open: boolean) => void]; } export declare function Drawer({ children, className, state: [open], ...props }: Props & HTMLAttributes): JSX.Element;