import React from 'react'; import type { ButtonProps } from "../../Button"; import { type MenuProps } from "../../Menu"; type ToolbarProps = { items?: { key: string; node: React.ReactElement | React.ReactElement; }[]; noGap?: boolean; automationId?: string; }; export declare const Toolbar: { ({ items, noGap, automationId }: ToolbarProps): JSX.Element; displayName: string; }; export {};