import * as React from 'react'; export interface CheckboxProps extends Omit, 'size'> { /** Checkbox label */ label?: React.ReactNode; /** Helper text below the checkbox */ helperText?: string; /** Error message */ error?: string; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Indeterminate state (mixed) */ indeterminate?: boolean; } /** * Checkbox - Binary selection control * * Accessible checkbox with label, error states, and indeterminate support. * Supports both controlled and uncontrolled modes. */ export declare const Checkbox: React.ForwardRefExoticComponent>; //# sourceMappingURL=Checkbox.d.ts.map