import { TransformOptions, TransformTyped } from'../stream.model';
/**
* Will collect all stream results in the array (keeping it in memory) and emit in the end as one result.
*/exportdeclarefunction transformToArray<IN>(opt?: TransformOptions): TransformTyped<IN, IN[]>;