import { FieldErrors, RegisterOptions, UseFormGetValues, UseFormWatch } from 'react-hook-form';
export interface I_CustomSelectProps {
    selectOptions: any[];
    registerFN: any;
    registerOptions: RegisterOptions;
    errors: FieldErrors;
    fieldName: string;
    fieldLabel: string;
    placeholder?: string;
    onChange?: any;
    disabled?: boolean;
    watch: UseFormWatch<any>;
    isHidden?: boolean;
    border?: string;
    getValues: UseFormGetValues<any>;
    isLoading?: boolean;
}
//# sourceMappingURL=index.d.ts.map