///
import { Transform } from 'stream';
/**
* Replicates data using specified chain
*
* @param chain Array that starts from Readable, and ends with Writable with Transform(s) in-between
*/
export default function replicate(chain: Array>): Promise<{}>;