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