import { Vector3, Quaternion } from "@babylonjs/core"; import { NormalizedLandmarkList, Results as HolisticResults } from "@mediapipe/holistic"; import { Results as HandsResults } from "@mediapipe/hands"; import { Handedness } from "../utility/types"; export declare const BodyPoseComp: import("@chantey/ecs").ComponentDefinition; export declare const HandComp: import("@chantey/ecs").ComponentDefinition<{ handedness: Handedness; }>; export declare const RightHandednessComp: import("@chantey/ecs").ComponentDefinition; export declare const LeftHandednessComp: import("@chantey/ecs").ComponentDefinition; export declare const HandsResultsComp: import("@chantey/ecs").ComponentDefinition; export declare const HolisticResultsComp: import("@chantey/ecs").ComponentDefinition; export declare const LandmarkListComp: import("@chantey/ecs").ComponentDefinition; export declare const TargetPoseComp: import("@chantey/ecs").ComponentDefinition<{ position: Vector3; rotation: Quaternion; }>; export declare const DevicePoseComp: import("@chantey/ecs").ComponentDefinition; export declare const NotTransformComp: import("@chantey/ecs").ComponentDefinition; export declare const NotTransformArrayComp: import("@chantey/ecs").ComponentDefinition; export declare const trackingComponents: { bodyPose: import("@chantey/ecs").ComponentDefinition; hand: import("@chantey/ecs").ComponentDefinition<{ handedness: Handedness; }>; leftHandedness: import("@chantey/ecs").ComponentDefinition; rightHandedness: import("@chantey/ecs").ComponentDefinition; handsResults: import("@chantey/ecs").ComponentDefinition; holisticResults: import("@chantey/ecs").ComponentDefinition; landmarkList: import("@chantey/ecs").ComponentDefinition; targetPose: import("@chantey/ecs").ComponentDefinition<{ position: Vector3; rotation: Quaternion; }>; devicePose: import("@chantey/ecs").ComponentDefinition; notTransform: import("@chantey/ecs").ComponentDefinition; notTransformArray: import("@chantey/ecs").ComponentDefinition; };