export declare class UITimer {
    interval: number;
    repeats: boolean;
    target: Function;
    _intervalID: number;
    isValid: boolean;
    constructor(interval: number, repeats: boolean, target: Function);
    schedule(): void;
    reschedule(): void;
    fire(): void;
    invalidate(): void;
}
