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