@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
20 lines (19 loc) • 787 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 { TreeListNoRecordsProps } from './interfaces/TreeListNoRecordsProps';
import * as React from 'react';
/**
* Represents the TreeListNoRecords component.
* The component is rendered when the `data` property of the TreeList is an empty array or undefined.
*/
export declare class TreeListNoRecords extends React.Component<TreeListNoRecordsProps, {}> {
/**
* @hidden
*/
render(): any;
}