@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
18 lines (17 loc) • 793 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 { TreeList as TreeListClassComponent } from './TreeList.js';
import { TreeListProps } from './interfaces/TreeListProps';
import * as React from 'react';
/**
* Functional wrapper that adds Web MCP tool registration
* around the class-based TreeList component.
*
* @hidden
*/
export declare const TreeListWrapper: React.ForwardRefExoticComponent<TreeListProps & React.RefAttributes<TreeListClassComponent>>;