import type { PutCommandInput } from '@aws-sdk/lib-dynamodb'; import type { Entity } from '../../../../entity/index.js'; import type { PutItemOptions } from '../options.js'; type CommandOptions = Omit; type PutItemOptionsParser = (entity: ENTITY, putItemOptions: PutItemOptions) => CommandOptions; export declare const parsePutItemOptions: PutItemOptionsParser; export {};