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