import { Handler } from '../../types';
import { Context } from '../context';
import { ProcessPipe } from './pipe';
export declare class Pipeline {
    run(pipes: ProcessPipe[], context: Context, handler: Handler): Promise<unknown>;
}
