type CircularRefType = { id: string; title: string; table?: string; }; type CircularRefMapType = Map; export declare class CircularRefContext { private constructor(); refs: CircularRefMapType; static make(...existingArr: (CircularRefMapType | CircularRefContext)[]): CircularRefContext; add(ref: CircularRefType): void; cloneAndAdd(ref: CircularRefType): CircularRefContext; formatRef(ref: any): string; } export {};