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