import { SvelteComponent } from "svelte"; import type { INPUT_CONFIG, INPUT_TYPE } from "../types"; declare const __propDef: { props: { [x: string]: any; helperText?: string | undefined; id?: string | undefined; label?: string | undefined; name: string; type?: INPUT_TYPE | undefined; value?: any; animate?: INPUT_CONFIG["animate"]; labelClasses?: INPUT_CONFIG["labelClasses"]; rounded?: INPUT_CONFIG["rounded"]; size?: INPUT_CONFIG["size"]; variant?: INPUT_CONFIG["variant"]; }; events: { blur: FocusEvent; change: Event; click: MouseEvent; contextmenu: MouseEvent; dblclick: MouseEvent; focus: FocusEvent; input: Event; invalid: Event; keydown: KeyboardEvent; keypress: KeyboardEvent; keyup: KeyboardEvent; mousedown: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mousemove: MouseEvent; mouseout: MouseEvent; mouseover: MouseEvent; mouseup: MouseEvent; mousewheel: Event | MouseEvent | UIEvent | KeyboardEvent | TouchEvent | FocusEvent | SubmitEvent | ErrorEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | FormDataEvent | PointerEvent | ProgressEvent | SecurityPolicyViolationEvent | TransitionEvent | WheelEvent; paste: ClipboardEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type InputProps = typeof __propDef.props; export type InputEvents = typeof __propDef.events; export type InputSlots = typeof __propDef.slots; /** * [Go to docs](https://www.theui.dev/r/skcl) * ## Props * @prop export let id : string = generateToken() * export let name : string * export let value : any = "" * export let type : string = "text" * export let helperText : string | undefined = undefined * export let label : string|undefined = undefined * export let config : INPUT_CONFIG = {} */ export default class Input extends SvelteComponent { } export {};