import { SentimentAnalyzer as SentimentAnalyzerBase } from '@nlpjs/sentiment'; type SentimentAnalyzerSettings = Record; interface Container { use: (module: any) => void; [key: string]: any; } type GetSentimentSettings = Record; declare class SentimentAnalyzer extends SentimentAnalyzerBase { constructor(settings?: SentimentAnalyzerSettings, container?: Container); getSentiment(utterance: string, locale?: string, settings?: GetSentimentSettings): Promise; } export default SentimentAnalyzer;