/**
* Checks whether an objectisasync iterable.
* @param {any} obj The object to be checked.
* @returns {obj is AsyncIterable<any>} Returns true if the objectisasync iterable; otherwise, returns false.
*/
export function isAsyncIterable(obj: any): obj is AsyncIterable<any>;