import { type JsonNode } from '../nodes'; /** * Deeply checks if two JSON CRDT nodes have the same schema and values. Does * not verify that the CRDT metadata (like timestamps) are the same, only that * the structure and values are equal. * * @param a The first JSON CRDT node. * @param b The second JSON CRDT node. * @returns True if the schemas and values are equal, false otherwise. */ export declare const cmp: >(a: A, b: unknown, compareContent: boolean) => b is A;