/** * argv for an OS-scheduler entry that runs `omp schedule run --id --root `. * * cron/launchd/systemd run with a minimal PATH (`/usr/bin:/bin`) where the * `#!/usr/bin/env node` shebang of the omp wrapper cannot resolve `node` * (e.g. nvm installs) — the tick then dies with `env: node: No such file or * directory`. So unless the user supplied their own wrapper via `OMP_BIN` * (they own its environment), invoke the current node executable and the real * CLI script explicitly. */ export declare function scheduleRunArgv(jobId: string, stateRoot: string): string[];