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