import type { JSONPatchOpHandlerMap } from '../types.js'; import { add } from './add.js'; import { bit } from './bitmask.js'; import { copy } from './copy.js'; import { increment } from './increment.js'; import { move } from './move.js'; import { remove } from './remove.js'; import { replace } from './replace.js'; import { test } from './test.js'; export * from './bitmask.js'; export { add, bit, copy, increment, move, remove, replace, test }; export declare function getTypes(custom?: JSONPatchOpHandlerMap): { test: import("../types.js").JSONPatchOpHandler; add: import("../types.js").JSONPatchOpHandler; remove: import("../types.js").JSONPatchOpHandler; replace: import("../types.js").JSONPatchOpHandler; copy: import("../types.js").JSONPatchOpHandler; move: import("../types.js").JSONPatchOpHandler; '@inc': import("../types.js").JSONPatchOpHandler; '@bit': import("../types.js").JSONPatchOpHandler; };