@mui/x-data-grid-pro
Version:
The Pro plan edition of the MUI X Data Grid components.
14 lines • 598 B
TypeScript
import { GridRenderCellParams, GridGroupNode } from '@mui/x-data-grid';
interface GridTreeDataGroupingCellProps extends GridRenderCellParams<any, any, any, GridGroupNode> {
hideDescendantCount?: boolean;
/**
* The cell offset multiplier used for calculating cell offset (`rowNode.depth * offsetMultiplier` px).
* @default 2
*/
offsetMultiplier?: number;
}
declare function GridTreeDataGroupingCell(props: GridTreeDataGroupingCellProps): import("react/jsx-runtime").JSX.Element;
declare namespace GridTreeDataGroupingCell {
var propTypes: any;
}
export { GridTreeDataGroupingCell };