import type { GetItemCommand, GetItemCommandOutput, PutItemCommand, PutItemCommandOutput } from '@aws-sdk/client-dynamodb'; export type DynamoDBGetClient = { send: (command: GetItemCommand) => Promise; }; export type DynamoDBPutClient = { send: (command: PutItemCommand) => Promise; };