import { ReactNode } from 'react'; interface GlassDrawerProps { open: boolean; onClose: () => void; title: string; description?: string; children: ReactNode; } export declare function GlassDrawer({ open, onClose, title, description, children, }: GlassDrawerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GlassDrawer.d.ts.map