import type { DoctorCheck } from './cli-doctor.js'; import type { WorkspaceInventory } from '../workspace/workspace-inventory.js'; import type { WorkspaceProject } from '../workspace/workspace-project.js'; /** Options for opt-in WordPress version compatibility doctor checks. */ export interface WorkspaceWordPressVersionDoctorCheckOptions { /** WordPress target used for `Tested up to` warnings. Defaults to the scaffold target. */ targetVersion?: string; } /** * Collect opt-in WordPress feature floor checks for an official workspace. * * These checks compare generated feature metadata against plugin bootstrap * headers without changing the default doctor output shape. */ export declare function getWorkspaceWordPressVersionDoctorChecks(workspace: WorkspaceProject, inventory: WorkspaceInventory, options?: WorkspaceWordPressVersionDoctorCheckOptions): DoctorCheck[];