
//#region src/service-adapters/shared/sdk-client-utils.d.ts
/**
 * SDK clients (OpenAI, Anthropic, Groq) store constructor options like
 * `defaultHeaders` and `fetch` in a private/protected `_options` field
 * with no public accessor. This extracts them with a narrow type assertion.
 */
declare function getSdkClientOptions(client: object): {
  defaultHeaders?: Record<string, string>;
  fetch?: typeof globalThis.fetch;
};
//#endregion
export { getSdkClientOptions };
//# sourceMappingURL=sdk-client-utils.d.cts.map