import { InputHTMLAttributes } from 'react';
export interface IBox extends InputHTMLAttributes<HTMLInputElement> {
    name: string,
    value?: string;
    key?: string;
    label?: string;
    onChange?: (e: any) => void;
    register?: any;
    renderOptions?: () => any | boolean;
}
//Type 'false | (() => any)' is not assignable to type '(() => boolean | Element) | undefined'.
//  Type 'boolean' is not assignable to type '() => boolean | Element'.ts(2322)