/** @typedef {typeof __propDef.props} DropdownProps */ /** @typedef {typeof __propDef.events} DropdownEvents */ /** @typedef {typeof __propDef.slots} DropdownSlots */ export default class Dropdown extends SvelteComponentTyped<{ class?: string; style?: string; title?: string; dark?: boolean; split?: boolean; direction?: string; custom?: boolean; }, { [evt: string]: CustomEvent; }, { toggler: {}; default: {}; }> { } export type DropdownProps = typeof __propDef.props; export type DropdownEvents = typeof __propDef.events; export type DropdownSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; style?: string; title?: string; dark?: boolean; split?: boolean; direction?: string; custom?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { toggler: {}; default: {}; }; }; export {};