import { AttributeValue, KeysAndAttributes, WriteRequest } from '@aws-sdk/client-dynamodb'; export type BatchGetRequestMap = { [key: string]: KeysAndAttributes; }; export type BatchWriteItemRequestMap = { [key: string]: WriteRequest[]; }; export type ExpressionAttributeNameMap = { [key: string]: string; }; export type ExpressionAttributeValueMap = { [key: string]: AttributeValue; }; export type AttributeMap = { [key: string]: AttributeValue; }; export type Key = { [key: string]: AttributeValue; }; export declare enum KeyType { HASH = "HASH", RANGE = "RANGE" } //# sourceMappingURL=aws-sdk-v2.types.d.ts.map