import type { Node, Relationship } from '@neo4j-nvl/base'; declare const getMapDifferences: (prevGraphElements: T[], newGraphElements: T[]) => { added: T[]; removed: T[]; updated: T[]; }; declare const getNodeAttributeDifferences: (prevNodes: Node[], newNodes: Node[]) => Node[]; export { getNodeAttributeDifferences, getMapDifferences };