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