import { AnyIterable } from 'augmentative-iterable';
import { AsyncCatchCallback } from '../types';
export declare function catchAsync<T>(this: AnyIterable<T>, errorCallback: AsyncCatchCallback): AsyncGenerator<Awaited<T>, void, any>;
