import type { DieFn, NextFn } from '../pipe/Pipe'; import type { Step } from './Step'; import { TestLogs } from './TestLogs'; export declare const Pipeline: { async: (initial: any, steps: Step[], onSuccess: NextFn, onFailure: DieFn, initLogs?: TestLogs) => void; runStep: (initial: T, step: Step, onSuccess: NextFn, onFailure: DieFn, initLogs?: TestLogs) => void; }; //# sourceMappingURL=Pipeline.d.ts.map