import { SvelteComponent } from "svelte"; import type { DrawerOption } from './types.ts'; declare const __propDef: { props: { items?: DrawerOption[] | undefined; multiple?: boolean | undefined; searchable?: boolean | undefined; widthClass?: string | undefined; }; events: { click: CustomEvent; selected: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type DrawerContextProps = typeof __propDef.props; export type DrawerContextEvents = typeof __propDef.events; export type DrawerContextSlots = typeof __propDef.slots; export default class DrawerContext extends SvelteComponent { } export {};