import { Core } from '@strapi/strapi'; export type ElevenLabsSdkFetchContext = { narrationRequestId: string; operation: string; }; /** Run `fn` while SDK HTTP calls include telemetry context for {@link createElevenLabsSdkFetch}. */ export declare function withElevenLabsSdkFetchContext(store: ElevenLabsSdkFetchContext, fn: () => Promise): Promise; /** * `fetch` implementation for {@link ElevenLabsClient} — proxy support and fetch failure mapping * match the previous `elevenLabsFetch` behavior. */ export declare function createElevenLabsSdkFetch(strapi: Core.Strapi): typeof globalThis.fetch;