/** * Display token for tracked format changes that semantically represent * hyperlink insertion rather than generic formatting. */ export const HyperlinkAddedDisplayType: "hyperlinkAdded"; /** * Display token for tracked format changes that modify an existing hyperlink * (e.g. changing the href or re-saving the same link in suggesting mode). */ export const HyperlinkModifiedDisplayType: "hyperlinkModified"; export function resolveTrackedFormatDisplay({ attrs, nodes }: { attrs?: Object | undefined; nodes?: any[] | undefined; }): { trackedChangeDisplayType: string; trackedChangeText: string; } | null; //# sourceMappingURL=tracked-change-display.d.ts.map