import { Command } from 'commander'; export type UserConfigMigrateCommandContext = { log?: (line: string) => void; error?: (line: string) => void; }; export declare function createUserConfigMigrateCommand(ctx?: UserConfigMigrateCommandContext): Command;