import { type JSONNode, type JSONEntry } from '@redneckz/json-op'; export type JSONEntryTransform = (entry: JSONEntry) => Promise | JSONEntry[]; export type JSONEntryTransformPrecondition = (entry: JSONEntry) => boolean; export declare const entryValueTransform: (fn: (value: JSONNode) => Promise | JSONNode) => JSONEntryTransform;