import type { SpeakerLanguage } from '../_api/types.js'; export type CloudTtsOptions = { apiKey: string; voice: string; model?: string; output?: string; baseUrl?: string; }; export type ListSpeakersOptions = { apiKey: string; language?: SpeakerLanguage; baseUrl?: string; }; export declare function listSpeakers(options: ListSpeakersOptions): Promise<{ name: string; speakerId: string; demoAudioUrl: string; gender: string; language: SpeakerLanguage; }[]>; export declare function runCloudTts(text: string, options: CloudTtsOptions): Promise;