import type { BatchGetCommandInput } from '@aws-sdk/lib-dynamodb'; import { EntityAction } from '../../../entity/index.js'; import type { Entity, KeyInputItem } from '../../../entity/index.js'; import { $key } from './constants.js'; export declare class BatchGetRequest extends EntityAction { static actionName: "batchGet"; [$key]?: KeyInputItem; constructor(entity: ENTITY, key?: KeyInputItem); key(nextKey: KeyInputItem): BatchGetRequest; params(): NonNullable[string]['Keys']>[number]; }