import { Event } from "@robotlegsjs/core";
import { Container } from "pixi.js";
/**
 * 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(): Container;
    /**
     * Creates a new container existence event
     *
     * @param type The event type
     * @param container The container associated with this event
     */
    constructor(type: string, container: Container);
    /**
     * @inheritDoc
     */
    clone(): ContainerRegistryEvent;
}
