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