import { type TestLogs } from '../api/TestLogs'; export type NextFn = (value: T, logs: TestLogs) => void; export type DieFn = (err: any, logs: TestLogs) => void; export type RunFn = (value: T, next: NextFn, die: DieFn, logs: TestLogs) => void; export declare const Pipe: (f: RunFn) => RunFn; //# sourceMappingURL=Pipe.d.ts.map