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