import { DynamoDB, type DynamoDBClientConfig } from '@aws-sdk/client-dynamodb'; import { type Connection } from './connection'; interface DyngooseDynamoDBConnectionOptions extends DynamoDBClientConfig { enableAWSXray?: boolean; } export declare class DynamoDBConnection implements Connection { private readonly __client; constructor(options: DyngooseDynamoDBConnectionOptions); get client(): DynamoDB; } export {};