export interface InputProps { id?: string; readOnly?: boolean; value?: string; onChange?: (event: Event) => void; onKeyDown?: (event: KeyboardEvent) => void; onFocus?: (event: FocusEvent) => void; onBlur?: (event: FocusEvent) => void; placeholder?: string; className?: string; style?: Record; maxLength?: number; /** width always match content width */ syncWidth?: boolean; /** autoComplete for input */ autoComplete?: string; } export interface InputRef { input: HTMLInputElement; } declare const Input: import('vue').DefineSetupFnComponent; export default Input;