import { type DynamoDB } from '@aws-sdk/client-dynamodb'; import { type Connection } from './connection'; export declare class DAXConnection implements Connection { private readonly __client; constructor(options: { endpoints: string[]; requestTimeout?: number; }); get client(): DynamoDB; }