export declare class GlideCounter { constructor(); constructor(fullSequence: string); constructor(milliseconds: number); static next(name: string): string; static getDate(counter: string): Date; static getSequenceFromDate(dt: string): string; format(time: number): string; after(c: GlideCounter): boolean; before(c: GlideCounter): boolean; onOrAfter(c: GlideCounter): boolean; onOrBefore(c: GlideCounter): boolean; compareTo(o: any): number; toString(): string; hashCode(): number; equals(o: any): boolean; }