@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
31 lines (30 loc) • 1.18 kB
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 { default as React } from 'react';
import { GridProps } from './interfaces/GridProps.js';
/** @hidden */
export declare const useGridState: () => [GridState, any, GridProps];
/** @hidden */
export type GridState = {
edit?: GridProps['edit'];
filter?: GridProps['filter'];
highlight?: GridProps['highlight'];
search?: GridProps['search'];
select?: GridProps['select'];
sort?: GridProps['sort'];
skip?: GridProps['skip'];
take?: GridProps['take'];
group?: GridProps['group'];
detailExpand?: GridProps['detailExpand'];
groupExpand?: GridProps['groupExpand'];
columnsState?: GridProps['columnsState'];
};
/** @hidden */
export type GridStateAction = any;
/** @hidden */
export declare const GridClientStateProvider: (props: GridProps) => React.JSX.Element;