/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
import * as React from 'react';
/**
* Represents the ToolbarItem handle.
*/
export interface ToolbarItemHandle {
/**
* Returns the HTML element of the ToolbarItem component.
*/
element: HTMLDivElement | null;
}
/**
* Represents the props of KendoReact ToolbarItem component.
*/
export interface ToolbarItemProps extends KendoReactComponentBaseProps {
/**
* Sets additional classes to the ToolbarItem component.
*
* @example
* ```jsx
*
* ```
*/
className?: string;
/**
* Sets additional styles to the ToolbarItem component.
*
* @example
* ```jsx
*
* ```
*/
style?: React.CSSProperties;
}
/**
* Represents the KendoReact ToolbarItem component.
* To add a tool to the Toolbar, wrap it inside a ToolbarItem component
* ([see example](https://www.telerik.com/kendo-react-ui/components/buttons/toolbar/tools)).
*/
export declare const ToolbarItem: React.ForwardRefExoticComponent>;