import { AsyncSequence } from "../../sequency"; export declare class ToMap { /** * Returns a map consisting of each key-value pair. If a `map` is passed * the pairs are set on this map. Duplicate keys override each other. * * @param {Map} map * @returns {Promise>} */ toMap(this: AsyncSequence<[K, V]>, map?: Map): Promise>; }