/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * Represents the props of KendoReact ToolbarSpacer component. */ export interface ToolbarSpacerProps { /** * Sets additional classes to the ToolbarSpacer component. */ className?: string; } /** @hidden */ export interface ToolbarSpacerHandle { /** * Returns the HTML element of the ToolbarSpacer component. */ element: HTMLDivElement | null; } /** * Represents the KendoReact ToolbarSpacer component. * To specify an empty space, provide a ToolbarSpacer component * ([see example](https://www.telerik.com/kendo-react-ui/components/buttons/toolbar/tools)). */ export declare const ToolbarSpacer: React.ForwardRefExoticComponent>;