/** * @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 KendoReact Toolbar Separator component. */ export interface ToolbarSeparatorProps { /** * Sets additional classes to the ToolbarSeparator component. */ className?: string; /** * @hidden */ _ref?: React.Ref; } export declare const ToolbarSeparator: (props: ToolbarSeparatorProps) => React.JSX.Element;