import type { DoctorCheck } from './cli-doctor.js'; import type { WorkspaceInventory } from '../workspace/workspace-inventory.js'; import type { WorkspaceProject } from '../workspace/workspace-project.js'; /** * Collect base file, metadata, hook, and collection-import checks for one block. * * @param workspace Resolved workspace metadata and filesystem paths. * @param block Inventory row describing the generated block. * @returns Ordered block core doctor checks. */ export declare function getWorkspaceBlockCoreDoctorChecks(workspace: WorkspaceProject, block: WorkspaceInventory['blocks'][number]): DoctorCheck[];