///
import { TreeProps } from './tree';
export interface TreeContextValue extends Pick, 'harmonizeSelections' | 'expandedIds' | 'selectedIds' | 'selectableType' | 'size'> {
prefixIcon?: TreeProps['prefixIcon'];
toggleIcon?: TreeProps['toggleIcon'];
}
export declare const TreeContext: import("react").Context;