import * as React from "react";
import { IReactHookFormProps } from "./types";
export interface IInputProps {
    name: string;
    ariaLabel: string;
    disabled?: boolean;
    defaultValue?: string;
    icon?: JSX.Element;
    placeholder?: string;
    hideErrorMessage?: boolean;
}
export declare const InputPassword: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputText: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputEmail: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputURL: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputNumber: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputFloat: React.FC<IInputProps & IReactHookFormProps>;
interface IInputFileProps {
    accept?: string;
}
export declare const InputFile: React.FC<IInputFileProps & IInputProps & IReactHookFormProps>;
export {};
