import React from "react"; import type DrawerRootProps from "./private/types/DrawerRootProps"; import type PanelProps from "./private/types/PanelProps"; declare const Drawer: (({ children, className, open, setOpen, }: DrawerRootProps) => React.JSX.Element) & { Panel: ({ children, className, position }: PanelProps) => React.JSX.Element; Backdrop: ({ className, onClose, }: { className?: string | undefined; onClose?: (() => void) | undefined; }) => React.JSX.Element; }; export default Drawer; //# sourceMappingURL=Drawer.d.ts.map