import { type ServiceHost } from "./service-host.js"; import type { ServiceScope } from "./service-definition.js"; import type { ServicePlatform } from "./service-platform.js"; /** 显式取消尚未停服的迁移;保留全部备份及失败工件,不重放、不恢复文件、不清理目录。 */ export declare function cancelUnstartedServiceMigration(id: string, scope: ServiceScope, host?: ServiceHost, platform?: Pick): Promise; /** * 冷回退只处理旧服务已静止且目标文件尚未写入的中断,以及本函数自身的恢复/重启阶段。 * 它绝不停止当前进程;目标文件或目标管理进程已出现时必须走单独的身份对账。 */ export declare function rollbackStoppedServiceMigration(id: string, scope: ServiceScope, host?: ServiceHost, platform?: ServicePlatform): Promise; //# sourceMappingURL=service-migration-recovery.d.ts.map