type PipeCallback
= (input: P, output: T) => T | Promise; export declare class Pipeline { private callbacks; use(callbackFn: PipeCallback): this; exec(input?: P, output?: T): Promise; execSync(input?: P, output?: T): T; } export {}; //# sourceMappingURL=index.d.ts.map
{ private callbacks; use(callbackFn: PipeCallback
): this; exec(input?: P, output?: T): Promise; execSync(input?: P, output?: T): T; } export {}; //# sourceMappingURL=index.d.ts.map