import { TextEvent } from "./TextEvent";
import { AEvent } from "./AEvent";
export declare class ErrorEvent extends TextEvent {
    static ERROR: string;
    private m_errorID;
    constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string, id?: number);
    get errorID(): number;
    clone(): AEvent;
    toString(): string;
}
