import { ElevenLabsClient } from 'elevenlabs'; import { SpeechToText } from './speech-to-text'; import { TextToSpeech } from './text-to-speech'; export * from './speech-to-text'; export type ElevenLabsAlphaConfig = { apiKey: string; }; export declare class ElevenLabsAlpha { apiKey: string; elevenlabs: ElevenLabsClient; speechToText: SpeechToText; textToSpeech: TextToSpeech; constructor(config?: ElevenLabsAlphaConfig); }