import { AmazonBedrockProviderSettings, AmazonBedrockProvider } from '@ai-sdk/amazon-bedrock'; import { BackendClient } from '../../../backend/client.js'; import '../../../internals/serializable.js'; import '../../../internals/types.js'; import '../../../internals/helpers/guards.js'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ type AmazonBedrockClientSettings = AmazonBedrockProviderSettings; declare class AmazonBedrockClient extends BackendClient { protected create(): AmazonBedrockProvider; } export { AmazonBedrockClient, type AmazonBedrockClientSettings };