/** * Helper class used to generate IDs unique to the current session */ export declare class UniqueIdGenerator { /** * The next unique ID to be returned */ static _NextUniqueId: number; /** * Gets a unique (relatively to the current session) Id */ static get UniqueId(): number; /** * Ensures future generated IDs are greater than the specified value * @param minimum - The minimum value that future generated IDs should be greater than */ static EnsureIdsGreaterThan(minimum: number): void; } //# sourceMappingURL=uniqueIdGenerator.d.ts.map