import React, { InputHTMLAttributes, ReactNode } from 'react';
declare type CheckBoxProps = Omit, 'onChange'> & {
name: string;
checked?: boolean;
indeterminate?: boolean;
title?: string;
label?: ReactNode;
inputRef?: React.MutableRefObject;
disabled?: boolean;
readOnly?: boolean;
className?: string;
labelClassName?: string;
radiusBox?: boolean;
checkedColor?: string;
onChange?: (checked: boolean) => void;
};
export default function CheckBox({ name, checked, label, inputRef, disabled, readOnly, className, radiusBox, checkedColor, labelClassName, onChange, ...rest }: CheckBoxProps): JSX.Element;
export {};