import { NativeAttributeValue } from '@aws-sdk/lib-dynamodb'; import { ValueReference, AppendExpression } from './index.js'; /** * Update function to append values to a list attribute. * * @param values - The values or reference to append. */ declare function append(values: NativeAttributeValue[] | ValueReference): AppendExpression; export { append };