import { TranslateTextInput, TextToSpeechInput, SpeechToTextInput, TranslateTextOutput, TextToSpeechOutput, SpeechToTextOutput } from '../Predictions'; import { AbstractPredictionsProvider } from './AbstractPredictionsProvider'; export declare abstract class AbstractConvertPredictionsProvider extends AbstractPredictionsProvider { getCategory(): string; convert(input: TranslateTextInput | TextToSpeechInput | SpeechToTextInput): Promise; protected translateText(translateTextInput: TranslateTextInput): Promise; protected convertTextToSpeech(textToSpeechInput: TextToSpeechInput): Promise; protected convertSpeechToText(speechToTextInput: SpeechToTextInput): Promise; }