export declare function isAsyncIterator<T>(v: any): v is AsyncIterableIterator<T>; export declare function getLastValueFromAsyncIterableIterator<T>(i: AsyncIterableIterator<T>): Promise<T>;