UNPKG

@progress/kendo-react-gantt

Version:

React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package

29 lines (28 loc) 1.33 kB
/** * @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 as KendoToolbarProps } from '@progress/kendo-react-buttons'; import * as React from 'react'; /** @hidden */ export interface ToolbarProps extends KendoToolbarProps { children?: React.ReactNode; } /** * Represents the object which is returned from the `ref` callback of the [GanttToolbar](https://www.telerik.com/kendo-react-ui/components/gantt/api/gantttoolbar). * * For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article. */ /** @hidden */ export interface GanttToolbarHandle { element: HTMLDivElement | null; props: ToolbarProps; } /** * Represents the default `toolbar` component rendered by the [KendoReact Gantt component](https://www.telerik.com/kendo-react-ui/components/gantt). */ /** @hidden */ export declare const Toolbar: React.ForwardRefExoticComponent<ToolbarProps & React.RefAttributes<GanttToolbarHandle>>;