export {};
declare global {
    interface MapConstructor {
        create<K, V>(...entries: [K, V][]): Map<K, V>;
    }
}
