import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { value?: string; disabled?: boolean; readonly?: boolean; type?: string; placeholder?: string; autofocus?: boolean; required?: boolean; name?: string; label?: string; list?: any; ref?: any; rounded?: boolean; isDefault?: boolean; }; events: { keypress: KeyboardEvent; keyup: KeyboardEvent; keydown: KeyboardEvent; click: MouseEvent; change: Event; input: Event; focus: FocusEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type InputProps = typeof __propDef.props; export declare type InputEvents = typeof __propDef.events; export declare type InputSlots = typeof __propDef.slots; export default class Input extends SvelteComponentTyped { } export {};