export type StackInfo = { frames: StackFrame[]; }; export type StackFrame = { name: string; filePath: string; }; export declare const extractStackInfoFromStackTrace: (stackTrace: string) => StackInfo; export declare const stackInfoToString: (stackInfo: StackInfo) => string; //# sourceMappingURL=stack-info.d.ts.map