import { PluginKey } from '@milkdown/kit/prose/state'; import { DocumentIssue } from '../types'; export declare const documentIssuesDecoKey: PluginKey; /** * ProseMirror plugin that decorates document content based on health check issues. * - Broken article links: link marks whose href (normalized) is in the issue list * - Broken image links: image nodes whose src (normalized) is in the issue list * - Inappropriate content / Grammatical errors: text nodes containing issue.issue */ export declare function documentIssuesDecorationPlugin(issues: DocumentIssue[] | undefined): import('@milkdown/utils').$Prose;