import { GridRowId, GridRowTreeConfig } from '@mui/x-data-grid';
import { GridRowTreeCreationParams } from '@mui/x-data-grid/internals';
export declare function skipFiltering(rowTree: GridRowTreeConfig): {
  filteredRowsLookup: {};
  filteredChildrenCountLookup: Record<GridRowId, number>;
  filteredDescendantCountLookup: {};
};
export declare function skipSorting(rowTree: GridRowTreeConfig): GridRowId[];
/**
 * Retrieves the parent path for a row from the previous tree state.
 * Used during full tree updates to maintain correct hierarchy.
 */
export declare function getParentPath(rowId: GridRowId, treeCreationParams: GridRowTreeCreationParams): string[];