import { TOpenApiFeature, type TFetchClient } from 'feature-fetch'; import type { paths } from './gen/v1'; import { TElevenLabsFeature } from './types'; export declare function createElvenLabsClient(config: TElevenLabsClientConfig): TFetchClient<[TOpenApiFeature, TElevenLabsFeature]>; export interface TElevenLabsClientConfig { prefixUrl?: string; apiKey: string; }