import type { Patch } from '../json-crdt-patch'; import type { NodeApi } from '../json-crdt/model'; export declare const diff: (src: NodeApi, dst: unknown) => Patch | undefined; export declare const merge: (src: NodeApi, dst: unknown) => Patch | undefined;