import { type CheckboxProps as RACCheckboxProps } from 'react-aria-components'; import type { AriaLabelingProps, CommonProps, StringLikeChildren } from '../types.js'; export interface CheckboxProps extends CommonProps, AriaLabelingProps, Pick { /** The label rendered next to the checkbox. */ children?: StringLikeChildren; } /** * Allows users to mark an item as selected. Can be used standalone, or as part of `CheckboxGroup`. * * See [checkbox usage guidelines](https://ui.cimpress.io/components/checkbox/). */ declare const _Checkbox: (props: CheckboxProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Checkbox as Checkbox }; //# sourceMappingURL=checkbox.d.ts.map