import type { TTSCredentials } from "./types.js";
export type SupportedTTS = "azure" | "cartesia" | "cerevoice" | "deepgram" | "fishaudio" | "gemini" | "google" | "hume" | "mistral" | "murf" | "polly" | "elevenlabs" | "openai" | "playht" | "watson" | "witai" | "xai" | "resemble" | "unrealspeech" | "upliftai" | "modelslab" | "sherpaonnx" | "sherpaonnx-wasm" | "espeak" | "espeak-wasm" | "sapi" | "mock";
export declare function createTTSClient(engine: SupportedTTS, credentials?: TTSCredentials): any;
