export declare class TwoKeyMap { private _data; set(first: TFirst, second: TSecond, value: TValue): void; get(first: TFirst, second: TSecond): TValue | undefined; clear(): void; } export declare class FourKeyMap { private _data; set(first: TFirst, second: TSecond, third: TThird, fourth: TFourth, value: TValue): void; get(first: TFirst, second: TSecond, third: TThird, fourth: TFourth): TValue | undefined; clear(): void; } //# sourceMappingURL=MultiKeyMap.d.ts.map