import { SvelteComponentTyped } from "svelte"; import type { Size } from '../../types/size'; declare type Validity = 'success' | 'error' | false; declare type Option = string | number | boolean; export type { Size, Validity, Option }; declare const __propDef: { props: { [x: string]: any; value?: string | undefined; rows?: number | undefined; validity?: Validity | undefined; size?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl" | undefined; expand?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl" | undefined; width?: string | undefined; options?: Option[] | undefined; }; events: { change: Event; input: Event; } & { [evt: string]: CustomEvent; }; slots: { default: {}; iconLeft: {}; iconRight: {}; hint: {}; }; }; 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 { }