import { ReactNode } from "react"; export * from "./logic/toolbelt"; export declare type ToolbeltProps = { showOnSpawn?: boolean; worldLights?: boolean; localLights?: boolean; }; declare type ToolbeltLayer = { children: ReactNode[] | ReactNode; } & ToolbeltProps; export declare function Toolbelt(props: ToolbeltLayer): JSX.Element;