import { Container } from "pixi.js";
export type StageContextValue = {
    addObject: (body: Container) => void;
    removeObject: (body: Container) => void;
};
export declare const StageContext: import("react").Context<StageContextValue>;
