import type { TextDocument, TextEdit } from 'vscode-languageserver-textdocument'; import type { LintDiagnostics } from '../../stylelint/index.js'; import type LSP from 'vscode-languageserver-protocol'; /** * Get the edit info for a diagnostic. * @param document The document to get edit info for. * @param diagnostic The diagnostic to get edit info for. */ export declare function getEditInfo(document: TextDocument, diagnostic: LSP.Diagnostic, lintResult: (LintDiagnostics & { version: number; }) | undefined): { label: string; edit: TextEdit; } | undefined;