import { ToggleGroupCompound } from './types/ToggleGroupCompound.ts'; /** * A coordinated set of toggle buttons. * * Use `ToggleGroup.Item` for each option. Base UI manages the selected values, * roving focus, keyboard navigation, and controlled/uncontrolled behavior. * The group selects one item by default; pass `multiple` to allow several * selected items. * * @example * ```tsx * * * * * ``` */ declare const ToggleGroup: ToggleGroupCompound; export default ToggleGroup;