/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; /** * Class IntMap defines a map of elements in which the keys are integer numbers. */ /** @internal */ export declare class IntMap { private _map; constructor(); size(): int32; contains(key: int32): boolean; get(key: int32): V; set(key: int32, value: V): void; clear(): void; } export {}; //# sourceMappingURL=IntMap.d.ts.map