import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import * as React from 'react'; /** * Props for the Checkbox component. Extends Radix Checkbox Root props. * @property {boolean | 'indeterminate'} [checked] - The checked state of the checkbox. * @property {boolean} [disabled] - If true, the checkbox will be disabled. */ export type CheckboxProps = React.ComponentPropsWithoutRef; /** * Checkbox - An accessible checkbox with indeterminate state support. * @returns {JSX.Element} The rendered Checkbox component. * @component */ declare const Checkbox: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Checkbox }; //# sourceMappingURL=checkbox.d.ts.map