import { default as React, ReactNode } from 'react'; import { GroupProps } from '../../.deps/ui/core-web/src'; import { SafePick } from '../../.deps/utils/src'; export interface ToolbarGroupOwnProps { /** * Accessible label for this group of controls. */ label: string; children?: ReactNode; } export interface ToolbarGroupProps extends ToolbarGroupOwnProps, SafePick { } export declare function ToolbarGroup({ label, children, ref, ...rest }: ToolbarGroupProps): React.JSX.Element;