import * as React from 'react';
import { BaseUIComponentProps } from '../../utils/types.js';
import type { ToolbarRoot } from '../root/ToolbarRoot.js';
/**
* Groups several toolbar items or toggles.
* Renders a `
` element.
*
* Documentation: [Base UI Toolbar](https://base-ui.com/react/components/toolbar)
*/
declare const ToolbarGroup: React.ForwardRefExoticComponent>;
declare namespace ToolbarGroup {
interface Props extends BaseUIComponentProps<'div', ToolbarRoot.State> {
/**
* When `true` all toolbar items in the group are disabled.
* @default false
*/
disabled?: boolean;
}
}
export { ToolbarGroup };