/**
 * Split an async generator into multiple async generators, all drawing from the same source.
 */
export declare function splitAsyncGenerator<T>(source: AsyncGenerator<T>, n: number): Array<AsyncGenerator<T>>;
//# sourceMappingURL=splitAsyncGenerator.d.ts.map