import type { ReactNode } from 'react'; import { type CheckboxGroupProps as RACCheckboxGroupProps } from 'react-aria-components'; import type { Responsive } from '../spacing/types.js'; import type { Direction, CommonProps, FieldProps } from '../types.js'; export interface CheckboxGroupProps extends CommonProps, FieldProps, Pick { /** Checkboxes belonging to the group. Each checkbox must have a `value` prop defined. */ children: ReactNode; /** * Determines the direction in which checkboxes will be stacked. * @default 'vertical' */ direction?: Responsive; } /** * Allows users to select one or more items from a visible list. * * See [checkbox usage guidelines](https://ui.cimpress.io/components/checkbox/). */ declare const _CheckboxGroup: (props: CheckboxGroupProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _CheckboxGroup as CheckboxGroup }; //# sourceMappingURL=checkbox-group.d.ts.map