import { EmotionEventSpaffCode } from '../../proto/ai/inworld/packets/packets.pb'; export declare enum EmotionBehaviorCode { NEUTRAL = "NEUTRAL", DISGUST = "DISGUST", CONTEMPT = "CONTEMPT", BELLIGERENCE = "BELLIGERENCE", DOMINEERING = "DOMINEERING", CRITICISM = "CRITICISM", ANGER = "ANGER", TENSION = "TENSION", TENSE_HUMOR = "TENSE_HUMOR", DEFENSIVENESS = "DEFENSIVENESS", WHINING = "WHINING", SADNESS = "SADNESS", STONEWALLING = "STONEWALLING", INTEREST = "INTEREST", VALIDATION = "VALIDATION", AFFECTION = "AFFECTION", HUMOR = "HUMOR", SURPRISE = "SURPRISE", JOY = "JOY" } export declare class EmotionBehavior { readonly code: EmotionBehaviorCode; constructor(behavior: EmotionBehaviorCode); isNeutral(): boolean; isDisgust(): boolean; isContempt(): boolean; isBelligerence(): boolean; isDomineering(): boolean; isCriticism(): boolean; isAnger(): boolean; isTension(): boolean; isTenseHumor(): boolean; isDefensiveness(): boolean; isWhining(): boolean; isSadness(): boolean; isStonewalling(): boolean; isInterest(): boolean; isValidation(): boolean; isAffection(): boolean; isHumor(): boolean; isSurprise(): boolean; isJoy(): boolean; static fromProto(code: EmotionEventSpaffCode): EmotionBehaviorCode; }