import { SentimentAnalyzer as SentimentAnalyzerBase } from '@nlpjs/sentiment'; import { Container } from '@nlpjs/core'; declare class SentimentAnalyzer extends SentimentAnalyzerBase { constructor(settings?: {}, container?: Container); getSentiment(utterance: string, locale: string | undefined, settings: [key: string]): Promise; } export default SentimentAnalyzer;