import { default as React, HTMLAttributes } from 'react';
type CustomCheckboxProps = Omit, 'type'>;
interface CheckboxProps extends CustomCheckboxProps {
value: boolean;
setValue: (isChecked: boolean) => void;
disabled?: boolean;
hideUnchecked?: boolean;
}
export declare const Checkbox: React.FC;
export {};