import type { WorkspaceProject } from '../workspace/workspace-project.js'; /** * Patch generated sync-rest scripts so AI feature REST artifacts join workspace REST synchronization. */ export { ensureAiFeatureSyncRestAnchors, } from './cli-add-workspace-ai-sync-rest-anchors.js'; /** * Patch the workspace bootstrap file so it loads generated AI feature PHP modules. */ export declare function ensureAiFeatureBootstrapAnchors(workspace: WorkspaceProject): Promise; /** * Patch `package.json` with `sync-ai` plus the project-tools dependency used by generated AI sync scripts. */ export declare function ensureAiFeaturePackageScripts(workspace: WorkspaceProject): Promise<{ /** True when `@wp-typia/project-tools` was newly added to `devDependencies`. */ addedProjectToolsDependency: boolean; /** True when the workspace did not already define a `sync-ai` script. */ addedSyncAiScript: boolean; }>; /** * Patch `scripts/sync-project.ts` after package scripts so generated workspaces invoke `sync-ai` when present. */ export declare function ensureAiFeatureSyncProjectAnchors(workspace: WorkspaceProject): Promise;