/** Fully assembled Node command used to start or probe this daemon entrypoint. */ export interface DaemonNodeCommand { executable: string; args: readonly string[]; entryPoint: string; } /** * Resolve the daemon entrypoint used by the supervisor on its next spawn. * Edge and non-blue-green nodes use this installed CLI; Core may use the * active blue-green slot. */ export declare function resolveDaemonEntryPoint(): string; /** * Resolve one complete daemon command. Every launch and executable probe goes * through this boundary so Node executable/exec-argv/entrypoint policy has one * owner. The selected entrypoint is retained for diagnostics and tests only; * callers execute `executable` with `args` without rebuilding the shape. */ export declare function resolveDaemonNodeCommand(...args: string[]): DaemonNodeCommand; //# sourceMappingURL=daemon-entrypoint.d.ts.map