import type { PrototypeStruct } from '../index.js';
interface RemoveEntry<K, V> {
    removeEntry(key: K): [K, V];
}
export declare const removeEntry: PrototypeStruct;
declare global {
    interface Map<K, V> extends RemoveEntry<K, V> {
    }
}
export {};
//# sourceMappingURL=remove-entry.d.ts.map