export declare class ContinuousId { private static nextIdValue; private id; constructor(id: number); static get ZERO(): ContinuousId; static nextId(): TContinuousId; static nextCId(): ContinuousId; toNumber(): TContinuousId; } export type TContinuousId = number;