import type { GatewayService, GatewayServiceCommandConfig, GatewayServiceInstallArgs } from '../daemon/types.js'; export declare function resolveUpdatedGatewayEntryPoint(packageRoot: string): Promise; export declare function buildRefreshedGatewayServiceArgs(params: { command: GatewayServiceCommandConfig; entryPoint: string; expectedVersion: string; env?: NodeJS.ProcessEnv; }): GatewayServiceInstallArgs; export declare function refreshGatewayServiceAfterUpdate(params: { service: GatewayService; packageRoot: string; expectedVersion: string; env?: NodeJS.ProcessEnv; }): Promise;