import { AnimationMetadataType } from "./AnimationMetadataType";
export declare const emotions: {
    [key: string]: {
        sentiment: number;
    };
};
export interface EmotionAnimationMetadataType extends AnimationMetadataType {
    metaType: "motion";
    name: string;
    url: string;
    motion: string;
    motionType: "Gesture" | "Loop";
    motionSituation: "formal" | "informal";
    onlyWhileTalking: boolean;
    useAsFallback: boolean;
    type: "bvh" | "fbx" | "vrma";
}
export declare const emotionAnimations: {
    [emotion: string]: {
        [intensity: number]: EmotionAnimationMetadataType[];
    };
};
//# sourceMappingURL=emotions.d.ts.map