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