import type { DebugId, SourceMapV3 } from './SourceMap.js'; /** A thin wrapper around the Cache API to store source map JSONs keyed on Debug IDs */ export declare class SourceMapCache { #private; static instance(): SourceMapCache; static createForTest(name: string): SourceMapCache; private constructor(); set(debugId: DebugId, sourceMap: SourceMapV3): Promise; get(debugId: DebugId): Promise; disposeForTest(): Promise; }