/**
 * Count the number of items in an async interable
 */
export declare function count<T>(source: AsyncIterable<T>): Promise<number>;
