import React from 'react'; import type { ToolbarItemProps } from './ToolbarItem'; /** * @deprecated Use 'right' instead. */ type DeprecatedAlign = 'left' | 'center'; type ValidAlign = 'right'; export interface ToolbarGroupProps { /** * List of action items in the toolbar group. */ items?: ToolbarItemProps[]; /** * Alignment of the items in the group. * * ⚠️ 'left' | 'center' alignments are deprecated and will be removed in the next major release. Please use 'right' instead. */ align: ValidAlign | DeprecatedAlign; /** * If true, indicates that the ToolbarGroup is accessible to screen readers. */ accessible?: boolean; } declare const ToolbarGroup: ({ align, items, accessible, }: ToolbarGroupProps) => React.JSX.Element; export default ToolbarGroup;