type BodiesProps = { /** @dial-ignore */ _key?: string; /** * Enable streaming body data to server * @dial-dtype boolean * @dial-default true */ stream?: boolean; /** * Include left hand tracking data * @dial-dtype boolean * @dial-default false */ leftHand?: boolean; /** * Include right hand tracking data * @dial-dtype boolean * @dial-default false */ rightHand?: boolean; /** * Frames per second for streaming data * @dial-dtype int * @dial-default 30 * @dial-min 1 * @dial-max 120 */ fps?: number; /** * Show body joint visualization * @dial-dtype boolean * @dial-default false */ showBody?: boolean; /** * Show coordinate frame at each joint * @dial-dtype boolean * @dial-default true */ showFrame?: boolean; /** * Scale of the coordinate frame markers * @dial-dtype number * @dial-default 0.02 * @dial-min 0.001 * @dial-max 0.1 * @dial-step 0.001 */ frameScale?: number; }; declare function Body({ _key, stream, leftHand, rightHand, fps, showBody, showFrame, frameScale, }: BodiesProps): import("react/jsx-runtime").JSX.Element; export { Body };