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