import * as React from 'react'; import type { ToolbarButtonProps } from '../button'; import type { DisplayOnType } from '../utils'; export type ToolbarButtonGroupProps = { /** Children need to be one of the ToolbarButtons */ children: Array> | null>; /** A11y: Label for group when rendered as dropdown group */ groupLabel: string; /** * Target display of the button group. Choose 'phone' to prevent collapsing. */ displayOn?: DisplayOnType; }; /** * * `import { ToolbarButtonGroup } from '@planview/pv-toolbar' ` * * **A note on displayOn:** In the \`ToolbarButtonGroup\` it does not make sense to give the individual buttons an \`displayOn\` and will be ignored. * This is because the \`ToolbarButtonGroup\` does the collapsing into the more menu and all buttons collapse at the same time. */ export declare const ToolbarButtonGroup: ({ children, groupLabel, displayOn, }: ToolbarButtonGroupProps) => React.JSX.Element; //# sourceMappingURL=button-group.d.ts.map