import type { JSONContent } from '@tiptap/core'; export type JSONContentModifier = { filter: (predicate: (node: JSONContent) => boolean) => JSONContentModifier; set: (setter: (node: JSONContent) => JSONContent | JSONContent[]) => JSONContent; }; export declare const modify: (content: JSONContent) => JSONContentModifier; //# sourceMappingURL=modify.d.ts.map