/// <reference types="react" />
import { IReactHookFormProps } from "../types";
export interface ICheckboxProps {
    label: string;
    name: string;
    defaultChecked?: boolean;
    disabled?: boolean;
}
export declare const InputCheckbox: ({ name, validation, register, label, defaultChecked, disabled, }: ICheckboxProps & IReactHookFormProps) => JSX.Element;
