import { AEvent } from "./AEvent";
export declare class TimerEvent extends AEvent {
    static TIMER: string;
    static TIMER_COMPLETE: string;
    constructor(type: string, bubbles?: boolean, cancelable?: boolean);
    clone(): AEvent;
    toString(): string;
    updateAfterEvent(): void;
}
