export interface SourceMapData { version: number; sources: string[]; names?: string[]; mappings?: string; } export declare class SourcemapParser { private sourcemapPath; private sourcemapData; constructor(sourcemapPath: string); load(): void; getModulePath(index: number): string | undefined; getAllModulePaths(): string[]; getModuleCount(): number; isLoaded(): boolean; static findSourcemap(bundlePath: string): string | null; static normalizeModulePath(modulePath: string): string; }