import type { PrototypeStruct } from '../index.js';
declare type MapFn<K, V> = (n: [K, V]) => [K, V];
interface MapFrom {
    from<K, V>(mapEntries: [K, V][], mapFn?: MapFn<K, V>): Map<K, V>;
}
export declare const from: PrototypeStruct;
declare global {
    interface MapConstructor extends MapFrom {
    }
}
export {};
//# sourceMappingURL=from.d.ts.map