/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ToolbarProps } from './ToolbarProps'; /** * Represents the Toolbar handle. */ export interface ToolbarHandle { /** * Represents the element of the Toolbar component. */ element: HTMLDivElement | null; /** * Represents the props of the Toolbar component. */ props: Readonly; }