import type { UpdateCommandInput } from '@aws-sdk/lib-dynamodb'; import type { Entity } from '../../../../entity/index.js'; import type { UpdateItemOptions } from '../options.js'; type CommandOptions = Omit; type UpdateItemOptionsParser = (entity: ENTITY, updateItemOptions: UpdateItemOptions) => CommandOptions; export declare const parseUpdateItemOptions: UpdateItemOptionsParser; export {};