import { VuerProps } from '@vuer-ai/vuer'; export type HandActuatorProps = VuerProps & { ctrlId: number; offset: number; low: number; high: number; cond: string; value: string; scale: number; }; /** * Usage: * * * */ export declare const HandActuator: ({ ctrlId, offset, low, high, cond, value, scale, }: HandActuatorProps) => void;