import type { JSONPatchOp, State } from '../types.js'; /** * Update array indexes to account for values being added or removed from an array. */ export declare function updateArrayIndexes(state: State, thisPath: string, otherOps: JSONPatchOp[], modifier: 1 | -1, isRemove?: boolean): JSONPatchOp[];