import { OpenAIProviderSettings, OpenAIProvider } from '@ai-sdk/openai'; import { BackendClient } from '../../../backend/client.cjs'; import '../../../internals/serializable.cjs'; import '../../../internals/types.cjs'; import '../../../internals/helpers/guards.cjs'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ type OpenAIClientSettings = OpenAIProviderSettings; declare class OpenAIClient extends BackendClient { protected create(): OpenAIProvider; } export { OpenAIClient, type OpenAIClientSettings };