import { Pair } from "../array/array.js";
/**
 * Returns the pair of arrays of keys and values of the given `Map`
 */
export declare const kv: (map: Map<any, any>) => Pair<any[]>;
/**
 * Returns the new `Map` built from the key-value pairs passed
 */
export declare const dekv: ([keys, values]: Pair<any[]>) => Map<any, any>;
