import type { ControlStatus } from "@onebots/core/control"; export interface MigrationManagerState extends Pick { manager: ControlStatus["manager"] & { pid: number; }; gateway: Pick & { instance?: { id: string; pid: number; address: { host: "127.0.0.1"; port: number; }; }; }; serviceMigration: { pending: boolean; recoveryRequired: boolean; }; knownConfigurationFailure: boolean; accounts?: NonNullable; } export declare function inspectPrivateControlSocket(workspace: string): string; export declare function inspectMigrationManager(workspace: string): Promise; export declare function releaseMigrationManager(workspace: string, operationId: string): Promise; //# sourceMappingURL=service-migration-manager.d.ts.map