import { App } from 'vue'; /** * @aivue/emotion-ui * Emotion-aware UI components for Vue 3 */ export { default as EmotionAwareInput } from './components/EmotionAwareInput.vue'; export { default as EmotionAwareButton } from './components/EmotionAwareButton.vue'; export { default as EmotionAwareNotification } from './components/EmotionAwareNotification.vue'; export { useEmotionStore } from './composables/useEmotionStore'; export type { EmotionState, EmotionEvent } from './composables/useEmotionStore'; export { analyzeSentiment, analyzeSentimentWithAI } from './utils/sentimentAnalysis'; export type { SentimentResult } from './utils/sentimentAnalysis'; export { analyzeVoiceTone, VoiceMonitor } from './utils/voiceAnalysis'; export type { VoiceAnalysisResult } from './utils/voiceAnalysis'; export { TypingAnalyzer, ClickAnalyzer } from './utils/interactionAnalysis'; export type { TypingPattern, ClickPattern } from './utils/interactionAnalysis'; export { FacialAnalyzer, isFacialDetectionSupported, requestCameraPermission } from './utils/facialAnalysis'; export type { FacialExpression } from './utils/facialAnalysis'; declare const _default: { install(app: App): void; }; export default _default;