import { DictionaryDiffArray, type Result } from '@overture-stack/lectern-dictionary'; /** * Fetches from a Lectern server the diff array between two versions of the same dictionary. * * This function requires a left (current) and right (previous) version of the dictionary to compare. * If the server has both versions, then an array of all fields that have differences will be returned. */ export declare const getDiff: (lecternHost: string, dictionary: { name: string; leftVersion: string; rightVersion: string; }, options?: { showReferences?: boolean; }) => Promise>;