/** * Migrate Command * Updates workflow files to new format * @requirement REQ-MDC-OPTIMIZATION-001 */ import { Command } from 'commander'; export declare function registerMigrateCommand(program: Command): void; /** * Update .mdc files from templates * Exported for testing purposes * @param projectRoot - Optional project root directory (defaults to process.cwd()) */ export declare function updateMdcFilesFromTemplates(projectRoot?: string): Promise;