import { ReactNode } from "react"; import { Props as ContainerProps } from "@react-three/fiber/dist/declarations/src/web/Canvas"; export * from "./logic/environment"; export type EnvironmentProps = { name?: string; pauseMenu?: ReactNode; loadingScreen?: ReactNode; dev?: boolean; canvasProps?: Partial; }; type EnvironmentLayerProps = { children: ReactNode | ReactNode[]; } & EnvironmentProps; export declare function Environment(props: EnvironmentLayerProps): import("react").JSX.Element;