import { ElevenLabsClient as FernClient } from "../Client"; import type * as core from "../core"; import { WebhooksClient } from "./webhooks"; import { MusicClient as GeneratedMusic } from "../api/resources/music/client/Client"; import { SpeechToText } from "./speechToText"; export declare namespace ElevenLabsClient { interface Options extends FernClient.Options { /** * Your ElevenLabs API Key. Defaults to the environment * variable ELEVENLABS_API_KEY. */ apiKey?: core.Supplier; } } export declare class ElevenLabsClient extends FernClient { private _customWebhooks; private _customMusic; private _customSpeechToText; constructor(options?: ElevenLabsClient.Options); get webhooks(): WebhooksClient; get music(): GeneratedMusic; get speechToText(): SpeechToText; }