import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type DrawerProps = Omit, "class"> & { open?: boolean; title: string; description?: string; side?: "left" | "right" | "bottom"; closeLabel?: string; class?: string; children?: Snippet; footer?: Snippet; onclose?: () => void; }; declare const Drawer: import("svelte").Component; type Drawer = ReturnType; export default Drawer; //# sourceMappingURL=Drawer.svelte.d.ts.map