/** * A class to render unsigned int text. * Sometime we don't want to create too much string, especially if the number text is updated many times per second, * as it will create many objects and can trigger GC. */ export declare class UIntText { texts: Text[]; container: HTMLElement; constructor(container: HTMLElement, initialLength?: number); private createText; set(value: number): void; } export declare function createUIntText(container: HTMLElement, initialLength?: number): UIntText;