import { Event } from "@robotlegsjs/core";
/**
 * View Configuration Event
 * @private
 */
export declare class ConfigureViewEvent extends Event {
    static CONFIGURE_VIEW: string;
    private _view;
    /**
     * The view instance associated with this event
     */
    get view(): egret.DisplayObjectContainer;
    /**
     * Creates a view configuration event
     * @param type The event type
     * @param view The associated view instance
     */
    constructor(type: string, view: egret.DisplayObjectContainer);
    /**
     * @inheritDoc
     */
    clone(): ConfigureViewEvent;
}
