import type { BatchWriteCommandInput } 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 BatchDeleteRequest extends EntityAction { static actionName: "batchDelete"; [$key]?: KeyInputItem; constructor(entity: ENTITY, key?: KeyInputItem); key(nextKey: KeyInputItem): BatchDeleteRequest; params(): NonNullable[string][number]; }