import type { PredictionService, PredictorService } from "../../services"; import { SpeechService } from "./speech"; import { TranscriptionService } from "./transcriptions"; export declare class AudioService { /** * Create speech. */ readonly speech: SpeechService; /** * Transcribe audio. */ readonly transcriptions: TranscriptionService; constructor(predictors: PredictorService, predictions: PredictionService); }