import type { IAsyncEnumerable } from "../types/index.js"; /** * Determine if a type is IAsyncEnumerable * @param source Any Value * @returns Whether or not source is an Async Enumerable */ export declare const isAsyncEnumerable: (source: any) => source is IAsyncEnumerable;