import { OperatorAsyncFunction } from'../../interfaces';
/**
* Returns an async iterable sequence of batches that are collected from the source sequence between
* subsequent `next()` calls.
*/export declare function batch<TSource>(): OperatorAsyncFunction<TSource, TSource[]>;