import { CheckboxGroupCompound } from './types/CheckboxGroupCompound.ts'; /** * The root container for a group of `CheckboxGroup.Item` components. * Manages the selection state for multiple checkboxes. * * @example * ```tsx * * * * * * `allValues` is inferred from direct `CheckboxGroup.Item` children. Provide it * explicitly only when the values are rendered indirectly or need an override. * ``` */ declare const CheckboxGroup: CheckboxGroupCompound; export default CheckboxGroup;