import type { WorkspaceProject } from '../workspace/workspace-project.js'; /** * Ensure the workspace bootstrap loads the shared REST schema helper file. * * @param workspace Resolved workspace project metadata and PHP prefix. * @returns A promise that resolves after the bootstrap is patched. * @throws When an existing loader does not reference `inc/rest-schema.php`. */ export declare function ensureRestSchemaHelperBootstrapAnchors(workspace: WorkspaceProject): Promise; /** * Ensure the workspace bootstrap loads generated REST resource PHP modules. * * @param workspace Resolved workspace project metadata and PHP prefix. * @returns A promise that resolves after the bootstrap is patched. * @throws When an existing loader does not reference generated REST modules. */ export declare function ensureRestResourceBootstrapAnchors(workspace: WorkspaceProject): Promise;