import { EmotionEventStrength } from '../../proto/ai/inworld/packets/packets.pb'; export declare enum EmotionStrengthCode { UNSPECIFIED = "UNSPECIFIED", WEAK = "WEAK", STRONG = "STRONG", NORMAL = "NORMAL" } export declare class EmotionStrength { readonly code: EmotionStrengthCode; constructor(strength: EmotionStrengthCode); isWeak(): boolean; isStrong(): boolean; static fromProto(code: EmotionEventStrength): EmotionStrengthCode; }