export interface InputProps { type?: string; size?: 'large' | 'small'; modelValue?: string; disabled?: boolean; green?: boolean; readonly?: boolean; autofocus?: boolean; autocomplete?: string; placeholder?: string; showPassword?: boolean; clearable?: boolean; form?: string; } export interface InputEmits { (e: 'update:modelValue', value: string): void; (e: 'change', value: string): void; (e: 'input', value: string): void; (e: 'focus', value: FocusEvent): void; (e: 'blur', value: FocusEvent): void; (e: 'clear'): void; } export declare const originInputProps: string[]; export interface InputInstance { ref: HTMLInputElement | HTMLTextAreaElement; }