import type { Path } from '../../../../../schema/actions/utils/path.js'; import type { Schema, TransformedValue } from '../../../../../schema/index.js'; import type { UpdateItemInputExtension } from '../../types.js'; import type { ExpressionPrefix, ExpressionState } from '../types.js'; export declare const pathTokens: (path: Path, prefix: ExpressionPrefix, state: ExpressionState) => string; export declare const valueToken: (value: TransformedValue, prefix: ExpressionPrefix, state: ExpressionState) => string; export declare const refOrValueTokens: (refOrValue: TransformedValue, prefix: ExpressionPrefix, state: ExpressionState) => string;