import { AEvent } from "@flashport/flashport";
export declare class DEvent extends AEvent {
    data: any;
    constructor(type: string, _data: any, bubbles?: boolean, cancelable?: boolean);
    clone: () => AEvent;
    toString: () => string;
}
