import type { HTMLInputTypeAttribute } from "react";
interface IFFormInput {
    id?: any;
    control: any;
    name: string;
    type?: HTMLInputTypeAttribute;
    label: string;
    labelSize?: string;
    required?: boolean;
    errors?: any;
    height?: number | string;
    disabled?: boolean;
    row?: number;
    isLabel?: boolean;
    inLine?: boolean;
    autoFocus?: boolean;
    placeholder?: string;
    classes?: string;
    callback?: any;
    readOnly?: boolean;
    isView?: boolean;
    t?: any;
    onKeyDown?: (event: any) => void;
}
declare const InputControl: (props: IFFormInput) => JSX.Element;
export default InputControl;
