import { ErrorEvent } from "./ErrorEvent";
import { AEvent } from "./AEvent";
export declare class IOErrorEvent extends ErrorEvent {
    static IO_ERROR: string;
    static NETWORK_ERROR: string;
    static DISK_ERROR: string;
    static VERIFY_ERROR: string;
    constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string, id?: number);
    clone(): AEvent;
    toString(): string;
}
