import * as React from "react"; interface SentimentComboBoxProps { hidden: boolean; isLoading: boolean; detectedLanguage?: string; sentiment?: string; helpTextMessage?: string; helpTextVariant?: "error" | "default"; onSentimentSelectedChange: (sentiment: string) => void; } export declare const SentimentComboBox: React.FC; export {};