import type { RuleExpression } from 'vee-validate'; export type FwInputType = 'text' | 'password' | 'email' | 'tel' | 'time' | 'url' | 'week' | 'month'; export declare interface FwInputProps { value: string; name: string; disableNamePrefix?: boolean; inputId?: string; inputClass?: string; type?: FwInputType; label?: string; placeholder?: string; rules?: RuleExpression; readonly?: boolean; hint?: string; autocomplete?: string; tabindex?: string; rounded?: boolean; enableErrors?: boolean; maxLength?: number; required?: boolean; invalidate?: boolean; } export declare interface InputTag { name: string; id: number; }