@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
20 lines (19 loc) • 772 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { GanttNoRecordsProps } from './interfaces/GanttNoRecordsProps.js';
import * as React from 'react';
/**
* Represents the GanttNoRecords component.
* The component is rendered when the `data` property of the Gantt is an empty array or undefined.
*/
export declare class GanttNoRecords extends React.Component<GanttNoRecordsProps, {}> {
/**
* @hidden
*/
render(): any;
}