declare function insert(this: Map, key: K, value: V): Map; export default insert; declare global { interface Map { insert: typeof insert; } }