import { FC } from 'react'; import { CheckboxProps } from './types/Checkbox.props.ts'; /** * A styled checkbox control built on top of `@base-ui/react/checkbox`. * * Supports controlled (`checked` + `onCheckedChange`) and uncontrolled * (`defaultChecked`) modes, plus an optional inline `label`. * * @example * ```tsx * * ``` */ declare const Checkbox: FC; export default Checkbox;