/// <reference types="react" />
import { CheckboxProps } from './checkbox.type';
declare const Checkbox: <T>(props: CheckboxProps<T>) => JSX.Element;
export default Checkbox;
