import { BedrockRuntimeClient } from '@aws-sdk/client-bedrock-runtime';
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider } from '@smithy/types';
import { type AWSRegion } from 'n8n-nodes-base/aws-credentials';
export declare function createBedrockRuntimeClient(params: {
    region: AWSRegion;
    credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
    bedrockRuntimeEndpoint?: string;
    maxRetries?: number;
    timeout?: number;
}): BedrockRuntimeClient;
