import { OrNone } from './declaration';
export type StreamOrNull = OrNone<NodeJS.ReadWriteStream>;
export type StreamTransfer = (prev: any) => StreamOrNull;
export type StreamSource = StreamTransfer | StreamOrNull;
export declare function pipeline(...sources: StreamSource[]): Promise<any>;
