import { PartitionAndSortKey } from "../keys"; import { TaggedModel } from "../types"; import { DynamoDBExpression } from "./DynamoDBExpression"; export declare class UpdateItemExpressionBuilder { private attributeNames; private attributeValues; private setStatements; private removeStatements; set(attributePath: string[], value: string): this; remove(attributePath: string[]): this; buildKeyConditionExpression(key: PartitionAndSortKey): string; build(): DynamoDBExpression; protected addAttributeName(name: string): string; protected addAttributeValue(value: any): string; } //# sourceMappingURL=UpdateItemExpressionBuilder.d.ts.map