import type { GridRowId } from '../types'; import type { ApiSection } from './types'; export type GridTreeApi = { expandAll: () => void; collapseAll: () => void; expand: (id: GridRowId, value?: boolean, recursive?: boolean) => void; }; export declare const createTreeApi: ApiSection; //# sourceMappingURL=tree.d.ts.map