import React, { PropsWithChildren } from "react";
import { ContainerOptions } from "pixi.js";
export type LayerOptions = {
    options?: Omit<ContainerOptions, "parent">;
};
export declare const Layer: React.FC<PropsWithChildren & LayerOptions>;
