import type { PutCommandInput } from '@aws-sdk/lib-dynamodb'; import type { Entity, ValidItem } from '../../../../entity/index.js'; import type { PutItemOptions } from '../options.js'; import type { PutItemInput } from '../types.js'; type PutItemParamsGetter = >(entity: ENTITY, input: PutItemInput, putItemOptions?: OPTIONS) => PutCommandInput & { ToolboxItem: ValidItem; }; export declare const putItemParams: PutItemParamsGetter; export {};