import type { FetchFunction } from '@ai-sdk/provider-utils'; export type ElevenLabsConfig = { provider: string; url: (options: { modelId: string; path: string }) => string; headers?: () => Record; fetch?: FetchFunction; generateId?: () => string; };