import * as React from 'react'; export interface CheckboxProps extends Omit, 'onChange'> { /** Size variant of the checkbox */ size?: 'sm' | 'md' | 'lg'; /** Whether the checkbox is checked */ checked?: boolean | 'indeterminate'; /** Default checked state (uncontrolled) */ defaultChecked?: boolean; /** Callback when checked state changes */ onCheckedChange?: (checked: boolean | 'indeterminate') => void; } export declare const Checkbox: React.ForwardRefExoticComponent>; //# sourceMappingURL=Checkbox.d.ts.map