export type InputSize = 'sm' | 'md' | 'lg'; export type InputType = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'; export type CommonAutoFill = 'on' | 'off' | 'email' | 'tel' | 'name' | 'username' | 'current-password' | 'country' | 'postal-code' | 'language' | 'bday'; export interface InputProps { autocomplete?: CommonAutoFill; class?: string | Record; disabled?: boolean; inputClass?: string | Record; label?: string; labelClass?: string | Record; required?: boolean; size?: InputSize; type?: InputType; validationStatus?: ValidationStatus; wrapperClass?: string | Record; } export declare const validationStatusMap: { readonly Error: "error"; readonly Success: "success"; }; export type ValidationStatus = typeof validationStatusMap[keyof typeof validationStatusMap];