import Stack from "@mui/material/Stack"; type JoggingJointValueControlProps = { startJogging: (direction: "-" | "+") => void; stopJogging: () => void; lowerLimit?: number; upperLimit?: number; useDegree: boolean; getValue: () => number | undefined; disabled?: boolean; } & React.ComponentProps; /** A input widget to control an individual joint */ export declare const JoggingJointValueControl: (({ startJogging, stopJogging, lowerLimit, upperLimit, useDegree, getValue, disabled, ...rest }: JoggingJointValueControlProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default JoggingJointValueControl;