/** @typedef {typeof __propDef.props} SelectProps */ /** @typedef {typeof __propDef.events} SelectEvents */ /** @typedef {typeof __propDef.slots} SelectSlots */ export default class Select extends SvelteComponentTyped<{ selected: any; data: any; width?: string; path?: string; options?: any[]; placeholder?: string; format?: any; multiple?: boolean; clearable?: boolean; }, { selected: CustomEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type SelectProps = typeof __propDef.props; export type SelectEvents = typeof __propDef.events; export type SelectSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { selected: any; data: any; width?: string; path?: string; options?: any[]; placeholder?: string; format?: any; multiple?: boolean; clearable?: boolean; }; events: { selected: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};