import type { JSONPatchOp } from '../../types'; /** * Update array indexes to account for values being added or removed from an array. If the path is not an array index * or if nothing is changed then the original array is returned. */ export declare function updateArrayIndexes(overPath: string, ops: JSONPatchOp[], modifier: 1 | -1): JSONPatchOp[];