//#region src/services/ContextService.d.ts type LoaderResult = { contextUrl: null; documentUrl: string; document: any; }; declare class ContextService { private cache; private allowNetwork; addCached(url: string, document: any): void; setAllowNetwork(allow: boolean): void; getDocumentLoader(): (url: string) => Promise; exportCache(): Record; } //#endregion export { ContextService }; //# sourceMappingURL=ContextService.d.mts.map