import { AbstractTreeNode } from '../../interfaces'; export declare type CheckedStrategy = 'all' | 'parent' | 'child'; export interface TreeDataHelperOptions { tree: N[]; getNodeValue(node: N): string; value: string[]; checkedStrategy: CheckedStrategy; isDetached?(node: N): boolean; } export default class TreeDataHelper { private readonly opts; private readonly valueSet; private wrapperMap; private rootWrapper; constructor(opts: TreeDataHelperOptions); private get value(); private isDetached; private initWrapperTree; isIndeterminate(nodeValue: string): boolean; isChecked(nodeValue: string): boolean; getValueAfterCheck(nodeValue: string): string[]; getValueAfterUncheck(nodeValue: string): string[]; getValueAfterToggle(nodeValue: string): string[]; getNode(nodeValue: string): N; getCleanValue(): string[]; }