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(): Phaser.GameObjects.Container;
    /**
     * Creates a view configuration event
     *
     * @param type The event type
     * @param view The associated view instance
     */
    constructor(type: string, view?: Phaser.GameObjects.Container);
    /**
     * @inheritDoc
     */
    clone(): ConfigureViewEvent;
}
