import { VuerProps } from '@vuer-ai/vuer'; export type AnchorActuatorProps = VuerProps & { bodyId: number; enabled?: boolean; scale?: number; forceDestination?: [number, number, number]; showForceVector?: boolean; showForceText?: boolean; showPivotControls?: boolean; }; /** * AnchorActuator component for applying programmatic forces to specific bodies in MuJoCo simulation. * The force direction is computed automatically from the anchor point to the pivot destination. */ export declare const AnchorActuator: ({ _key, bodyId, enabled, scale, forceDestination, showForceVector, showForceText, showPivotControls, }: AnchorActuatorProps) => import("react/jsx-runtime").JSX.Element;