import { type GridRenderCellParams, type GridDataSourceGroupNode } from '@mui/x-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; } export declare function GridDataSourceTreeDataGroupingCell(props: GridTreeDataGroupingCellProps): import("react/jsx-runtime").JSX.Element; export {};