import { Dict } from '../types'; type ListStoreOptionsType = { data: T[]; keyProp?: string; labelProp?: string; childrenProp?: string; }; export declare class ListStore { private nodeMap; private keyProp; private childrenProp; get nodes(): IterableIterator; constructor(options: ListStoreOptionsType); getNode(key: string): T; private visitNodes; } export {};