import type { ThreeElements } from "@react-three/fiber"; import type React from "react"; import type { Group } from "three"; export type RobotModelProps = { modelURL: string | Promise; /** * Called after a robot model has been loaded and * rendered into the threejs scene */ postModelRender?: () => void; flangeRef?: React.Ref; } & ThreeElements["group"]; export declare function GenericRobot({ modelURL, flangeRef, postModelRender, ...props }: RobotModelProps): import("react/jsx-runtime").JSX.Element | null; export default GenericRobot;