import type { PutItemCommand } from '@aws-sdk/client-dynamodb'; export type DynamoDBPutClient = { send: (command: PutItemCommand) => Promise<{ $metadata: { httpStatusCode: number; }; }>; };