import * as React from 'react'; import { GridRenderCellParams, GridGroupNode } from 's-data-grid'; interface GridTreeDataGroupingCellProps extends GridRenderCellParams { hideDescendantCount?: boolean; /** * The cell offset multiplier used for calculating cell offset (`rowNode.depth * offsetMultiplier` px). * @default 2 */ offsetMultiplier?: number; } declare function GridTreeDataGroupingCell(props: GridTreeDataGroupingCellProps): React.JSX.Element; declare namespace GridTreeDataGroupingCell { var propTypes: any; } export { GridTreeDataGroupingCell };