import { LookupCall, LookupRow } from '../index'; export declare class HierarchicalLookupResultBuilder { lookupCall: LookupCall; protected _lookupRowMap: Record>; constructor(lookupCall: LookupCall); /** * Load all parent nodes of the given lookup rows up to the root. */ addParentLookupRows(lookupRows: LookupRow[]): JQuery.Promise[]>; protected _addParent(lookupRow: LookupRow): JQuery.Promise; protected _fillMap(lookupRows: LookupRow[]): void; /** * Load all parent child of the given lookup rows. */ addChildLookupRows(lookupRows: LookupRow[]): JQuery.Promise[]>; protected _addChildren(lookupRow: LookupRow): JQuery.Promise[]>; } //# sourceMappingURL=HierarchicalLookupResultBuilder.d.ts.map