import type { BatchWriteCommandInput } from '@aws-sdk/lib-dynamodb'; import { EntityAction } from '../../../entity/index.js'; import type { Entity, InputItem } from '../../../entity/index.js'; import { $item } from './constants.js'; export declare class BatchPutRequest extends EntityAction { static actionName: "batchPut"; [$item]?: InputItem; constructor(entity: ENTITY, item?: InputItem); item(nextItem: InputItem): BatchPutRequest; params(): NonNullable[string][number]; }