import type { PackageManagerId } from '../shared/package-managers.js'; import type { ScaffoldTemplateVariables } from '../templates/scaffold.js'; interface ApplyMigrationUiCapabilityOptions { packageManager: PackageManagerId; projectDir: string; templateId: string; variables: ScaffoldTemplateVariables; } /** * Layer the migration dashboard capability onto a freshly scaffolded project. * * This copies the shared migration UI files, wires template-specific editor * hooks, and injects pinned migration scripts that shell out to the matching * `wp-typia` CLI version. */ export declare function applyMigrationUiCapability({ packageManager, projectDir, templateId, variables }: ApplyMigrationUiCapabilityOptions): Promise; export {};