import type { Snippet } from 'svelte'; type DrawerSide = 'left' | 'right' | 'top' | 'bottom'; type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full'; interface DrawerProps { id?: string; open?: boolean; title?: string; description?: string; side?: DrawerSide; size?: DrawerSize; closeOnBackdrop?: boolean; closeOnEscape?: boolean; showClose?: boolean; blurBackdrop?: boolean; class?: string; children?: Snippet; footer?: Snippet; onclose?: () => void; } declare const Drawer: import("svelte").Component; type Drawer = ReturnType; export default Drawer;