/** @packageDocumentation * @module Toolbar */ import * as React from "react"; import type { ToolbarItem } from "./ToolbarItem.js"; import { ToolbarOrientation, ToolbarUsage } from "./ToolbarItem.js"; /** Properties for the [[ToolbarComposer]] React components * @public * @deprecated in 4.17.0. Use `React.ComponentProps` */ export interface ExtensibleToolbarProps { /** Toolbar items. */ items: ToolbarItem[]; /** Toolbar usage based on which additional toolbar items are added from UI item providers. */ usage: ToolbarUsage; /** Toolbar orientation. */ orientation: ToolbarOrientation; } /** * Toolbar that is populated and maintained by UI item providers. * @note Overrides `isActive` property based on the active tool id. * @public */ export declare function ToolbarComposer(props: ExtensibleToolbarProps): React.JSX.Element; //# sourceMappingURL=ToolbarComposer.d.ts.map