interface Location { filePath: string; line: number; column: number; } export interface StackLocation extends Location { browserUrl: string; } export declare type MapStackLocation = (location: StackLocation) => StackLocation | Promise; export declare type MapBrowserUrl = (url: URL) => string; export interface ParseStackTraceOptions { browserRootDir?: string; cwd?: string; mapBrowserUrl?: MapBrowserUrl; mapStackLocation?: MapStackLocation; } export declare function parseStackTrace(errorMsg: string, rawStack: string, options?: ParseStackTraceOptions): Promise; export {}; //# sourceMappingURL=parseStackTrace.d.ts.map