import { PrimaryColorType } from "../../types/colors"; export interface CheckboxProps { checked?: boolean; initiallyChecked?: boolean; indeterminate?: boolean; color?: Omit; disabled?: boolean; name?: string; onChange?: (value: boolean) => void; size?: "sm" | "md" | "lg"; } export declare function Checkbox({ name, onChange, checked: checkedProp, initiallyChecked, indeterminate, disabled, color, size, }: CheckboxProps): JSX.Element; export default Checkbox;