
//#region src/v2/runtime/transcription-service/transcription-service.d.ts
interface TranscribeFileOptions {
  audioFile: File;
  /** MIME type of the audio file */
  mimeType?: string;
  /** Size of the audio file in bytes */
  size?: number;
}
declare abstract class TranscriptionService {
  abstract transcribeFile(options: TranscribeFileOptions): Promise<string>;
}
//#endregion
export { TranscribeFileOptions, TranscriptionService };
//# sourceMappingURL=transcription-service.d.cts.map