import type { JSONPatchOp } from '../../types'; /** * Get the adjusted path if it is higher, or undefined if not. */ export declare function updateArrayPath(op: JSONPatchOp, pathName: 'from' | 'path', prefix: string, index: number, original: JSONPatchOp, modifier: 1 | -1): JSONPatchOp | null;