import { SvelteComponent } from "svelte"; import type { ANIMATE_SPEED } from "../types"; declare const __propDef: { props: { [x: string]: any; id?: string | undefined; label?: string | undefined; animate?: ANIMATE_SPEED; backdrop?: boolean | undefined; closeOnEsc?: boolean | undefined; position?: "top" | "right" | "bottom" | "left" | undefined; staticBackdrop?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { drawerButton: { label: string; attr: { id: string; "aria-label": string; "aria-haspopup": string; "aria-controls": string; "aria-expanded": boolean; }; }; drawerContent: {}; }; }; export type DrawerProps = typeof __propDef.props; export type DrawerEvents = typeof __propDef.events; export type DrawerSlots = typeof __propDef.slots; export default class Drawer extends SvelteComponent { } export {};