import type { ToggleButtonGroupProps } from './types.js'; /** * The `ToggleButtonGroup` is used to group related options. * The group consists of at least two `ToggleButtonGroupItems`. * The `ToggleButtonGroup` supports exclusive selection only. * That means that selecting one option deselects any other. * @public */ export declare const ToggleButtonGroup: (props: ToggleButtonGroupProps & import("react").RefAttributes) => React.ReactElement | null;