/** * @holoscript/core Local Emotion Detector * * Implements multimodal emotion inference based on behavioral signals, * head motion, and hand stability. */ import { EmotionDetector, EmotionConfig, EmotionSignals, EmotionInference } from './EmotionDetector'; export declare class LocalEmotionDetector implements EmotionDetector { private config?; private headStabilityHistory; private handStabilityHistory; private readonly WINDOW_SIZE; constructor(); initialize(config: EmotionConfig): Promise; infer(signals: EmotionSignals): EmotionInference; dispose(): void; private getAverage; } //# sourceMappingURL=LocalEmotionDetector.d.ts.map