import React from "react";
export interface InputFormProps {
    id?: string;
    htmlFor?: string;
    variants?: string;
    type?: string;
    placeholder?: string;
    error?: string | null;
    errorType?: any;
    label: string;
    value: any;
    onBlur?: (_e: any) => void;
    onKeyUp?: (_e: any) => void;
    onChange?: (_e: any) => void;
    className?: string;
    disabled?: boolean;
    ariaLabel?: string;
}
export declare const InputForm: React.FC<InputFormProps>;
