import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; export type ProjectMigrateArgs = CommonArgs & AccountArgs & EnvironmentArgs & ConfigArgs & { platformVersion: string; unstable: boolean; }; declare const migrateCommand: YargsCommandModule; export default migrateCommand;