/** * Map the events published by an AsyncIterable. */ export declare const map: (map: (input: T) => O | Promise) => (asyncIterable: AsyncIterable) => AsyncGenerator;