import { HTMLInputTypeAttribute } from 'react';
import { RegisterOptions } from 'react-hook-form';
export interface I_FormField {
    error?: string;
    selectOptions?: any[];
    fieldName: string;
    fieldLabel: string;
    registerOptions: RegisterOptions;
    disabled?: any;
    defaultValue?: string;
    textAreaRow?: string;
    placeholder?: string;
    isHidden?: boolean;
    type?: HTMLInputTypeAttribute;
    step?: string;
    fieldtype: 'input' | 'select' | 'file' | 'textarea';
    [x: string]: any;
}
//# sourceMappingURL=index.d.ts.map