import { SvelteComponent } from "svelte"; import type { INPUT_CONFIG, SELECT_DATA } from "../types"; declare const __propDef: { props: { [x: string]: any; data?: SELECT_DATA | undefined; helperText?: string | undefined; id?: string | undefined; label?: string | undefined; name: string; value?: any; animate?: INPUT_CONFIG["animate"]; labelClasses?: INPUT_CONFIG["labelClasses"]; rounded?: INPUT_CONFIG["rounded"]; size?: INPUT_CONFIG["size"]; variant?: INPUT_CONFIG["variant"]; }; events: { change: Event; click: MouseEvent; focus: FocusEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type SelectProps = typeof __propDef.props; export type SelectEvents = typeof __propDef.events; export type SelectSlots = typeof __propDef.slots; /** * [Go to docs](https://www.theui.dev/r/skcl) * ## Props * @prop export let config : INPUT_CONFIG = {} * export let helperText : string | undefined = undefined * export let id : string = generateToken() * export let label : string|undefined = undefined * export let name : string * export let value : any = "" * export let data : Array<{disabled ?: boolean, selected ?: boolean, text : string, value ?: any}> = [] */ export default class Select extends SvelteComponent { } export {};