import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../../types'; /** * Props for the ToolbarControlGroup component * * @extends ComponentPropsWithoutRef<'div'> * @extends LayoutUtilProps */ export type ToolbarControlGroupProps = ComponentPropsWithoutRef<"div"> & LayoutUtilProps & { /** * Accessible label for the control group */ "aria-label"?: string; }; export declare const ToolbarControlGroup: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & LayoutUtilProps & { /** * Accessible label for the control group */ "aria-label"?: string; } & import('react').RefAttributes>;