import { VuerProps } from '@vuer-ai/vuer'; export type MotionControllerActuatorProps = VuerProps & { ctrlId: number; offset?: number; low: number; high: number; cond: string; scale: number; }; /** * MotionControllerActuator component actuates the MuJoCo simulation based on motion controller inputs. * * Usage: * */ export declare const MotionControllerActuator: ({ ctrlId, offset, low, high, cond, scale, }: MotionControllerActuatorProps) => any;