import type { PrototypeStruct } from '../index.js';
interface GetOrDefault<K, V> {
    getOrDefault(key: K, defaultValue: V): V;
}
export declare const getOrDefault: PrototypeStruct;
declare global {
    interface Map<K, V> extends GetOrDefault<K, V> {
    }
}
export {};
//# sourceMappingURL=get-or-default.d.ts.map