import { IComparable } from "./helpers.js"; export declare class DoubleDict { private readonly cacheMap; constructor(); get(a: Key1, b: Key2): Value | null; set(a: Key1, b: Key2, o: Value): void; }