import { Pipe } from './types';
export default class SimplePipe implements Pipe {
    private _chain;
    constructor();
    makePromises(payload: any): any;
    flow(payload: any): Promise<any>;
    pipe(f: any): Pipe;
}
