export declare function toArray(m: Map): [K, V][]; export declare function filter(m: Map, pred: (v: V) => boolean): Map; export declare function map(m: Map, f: (u: V) => U): Map; export declare function extend(m: Map, kvs: [K, V][]): Map; export declare function intersectionWith(m̅: Map[], f: (v̅: V[]) => U): Map; export declare function keys(m: Map): Set; export declare function unionWith(m̅: Map[], f: (vs: V[]) => U): Map; export declare function union(m̅: Map[]): Map; export declare function values(m: Map): Set;