export declare function filterStack(stack: string | undefined): string | undefined; export type StepLocation = { file: string; line: number; column: number; }; type StepReporter = (title: string, fn: () => Promise, location: StepLocation | undefined) => Promise; export declare function runStep(stepFn: StepReporter | null | undefined, title: string, fn: () => Promise): Promise; export declare function captureLocation(): StepLocation | undefined; export {}; //# sourceMappingURL=stackTrace.d.ts.map