/// import { Size } from "../../types"; type CheckboxProps = { label?: string; onChange?: (value: boolean) => void; placeholder?: string; checked?: boolean; disabled?: boolean; name?: string; size?: Size; autoFocus?: boolean; indeterminate?: boolean; className?: string; }; declare function Checkbox({ label, onChange, placeholder, checked, disabled, name, className, indeterminate, size, autoFocus, }: CheckboxProps): JSX.Element; export default Checkbox;