import type { GridHeaderParams } from '../layout/interface';
/**
 * 构建 grid-tree 模式的行头层级结构
 * grid-tree 模式特点：
 * 1. 每个维度占据独立的列（与 grid 模式相同）
 * 2. 支持展开/折叠子节点（与 tree 模式相同）
 */
export declare function buildGridTreeHierarchy(params: GridHeaderParams): void;
