type DrawerPlacement = 'left' | 'right' | 'top' | 'bottom'; interface DrawerOpenOptions { title?: string; content?: string; description?: string; placement?: DrawerPlacement; closable?: boolean; onClose?: () => void; } export type DrawerHandle = { close: () => void; promise: Promise; id: string; }; export declare const drawer: { open(options: DrawerOpenOptions): DrawerHandle; close(id: string): void; closeAll(): void; }; export {};