import { Event } from "@robotlegsjs/core";
/**
 * Container existence event
 * @private
 */
export declare class ContainerRegistryEvent extends Event {
    static CONTAINER_ADD: string;
    static CONTAINER_REMOVE: string;
    static ROOT_CONTAINER_ADD: string;
    static ROOT_CONTAINER_REMOVE: string;
    private _container;
    /**
     * The container associated with this event
     */
    get container(): egret.DisplayObjectContainer;
    /**
     * Creates a new container existence event
     * @param type The event type
     * @param container The container associated with this event
     */
    constructor(type: string, container: egret.DisplayObjectContainer);
    /**
     * @inheritDoc
     */
    clone(): ContainerRegistryEvent;
}
