import type { DoctorCheck } from './cli-doctor.js'; import type { WorkspaceInventory } from '../workspace/workspace-inventory.js'; import type { WorkspaceProject } from '../workspace/workspace-project.js'; /** * Collect editor plugin workspace doctor checks while preserving existing row order. * * @param workspace Resolved workspace metadata and filesystem paths. * @param editorPlugins Editor plugin entries parsed from the workspace inventory. * @returns Ordered editor plugin doctor checks. */ export declare function getWorkspaceEditorPluginDoctorChecks(workspace: WorkspaceProject, editorPlugins: WorkspaceInventory['editorPlugins']): DoctorCheck[];