import { TreeStructure } from '../TreeStructure'; import type { LoadOptions, LoadAllOptions } from './types'; import { ITreeNodeInfo } from '../types'; export declare class FetchingHelper { static loadAll({ treeStructure, itemsMap, options, dataSourceState, }: LoadAllOptions): Promise<{ itemsMap: import("index").ItemsMap; treeStructure: TreeStructure; loadedItems: TItem[]; }>; static load({ tree, options, dataSourceState, patch, }: LoadOptions): Promise<{ loadedItems: TItem[]; byParentId: import("../../helpers/map").CompositeKeysMap | Map; nodeInfoById: import("../../helpers/map").CompositeKeysMap | Map; }>; private static loadMissing; private static loadMissingItemsAndParents; private static loadItems; } //# sourceMappingURL=FetchingHelper.d.ts.map