export declare function parseStackString(stack: string): IStructreStackLine[]; interface IFunction { name: string; alias?: string; } interface IFileLocation { path: string; schema: string; line: number; column: number; isAbsolute: boolean; } interface IEvalDef { eval_func: string; eval_line: number; eval_column: number; funcs: string[]; } export interface IStructreStackLine { invalid?: boolean; special?: boolean; toString(): string; padding?: string; func?: IFunction; location?: IFileLocation; eval?: IEvalDef; _matches?: RegExp; } export declare function parseStackLine(line: string): IStructreStackLine; export {}; //# sourceMappingURL=stack-parser.v8.d.ts.map