export declare class IdGenerator { current: number; rounding: number; constructor(start?: number, rounding?: number); next(): number; gap(): void; }