import type { DHParameter, MotionGroupState } from "@wandelbots/nova-js/v2"; import type React from "react"; import type { Object3D } from "three"; type LinearAxisAnimatorProps = { rapidlyChangingMotionState: MotionGroupState; dhParameters: DHParameter[]; onTranslationChanged?: (joints: Object3D[], jointValues: number[]) => void; children: React.ReactNode; }; export default function LinearAxisAnimator({ rapidlyChangingMotionState, dhParameters, onTranslationChanged, children, }: LinearAxisAnimatorProps): import("react/jsx-runtime").JSX.Element; export {};