/// interface FinputProps { label?: String; display?: String; placeholder?: String; className?: String; type?: String; inputSize?: String; id?: String; name?: String; value?: any; min?: String; max?: String; onChange?: any; prefix?: any; prefixAction?: any; postfix?: any; postfixAction?: any; validations?: any; register?: any; required?: any; error?: any; disabled?: boolean; readonly?: boolean; } export declare const FInputText: ({ label, placeholder, type, display, className, inputSize, name, id, value, min, max, prefix, prefixAction, postfix, postfixAction, onChange, validations, register, required, error, disabled, readonly, ...otherProps }: FinputProps) => JSX.Element; export {}; //# sourceMappingURL=FinputText.d.ts.map