import type { Command } from 'commander'; import { type DetectedSource, type ImportSourceBinary } from '../../config/import-sources.js'; export declare function registerMigrateCommand(program: Command): void; export declare function normalizeBinary(value: string | undefined): ImportSourceBinary | null; export declare function buildImportBlock(targets: DetectedSource[], includeMcp: boolean): Record; export declare function writeImportFrom(configPath: string, importBlock: Record): void;