UNPKG

@smkit/ui

Version:

UI Kit of SberMarketing

28 lines (27 loc) 703 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; optionHeight?: number; absolute?: boolean; }; events: { mousedown: MouseEvent; mouseup: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: { toolbox: {}; notFound: {}; default: { option: any; }; }; }; export type OptionsProps = typeof __propDef.props; export type OptionsEvents = typeof __propDef.events; export type OptionsSlots = typeof __propDef.slots; export default class Options extends SvelteComponentTyped<OptionsProps, OptionsEvents, OptionsSlots> { } export {};