/** * Determine the correct command and arguments for spawning a CLI child process. * Handles both runtime mode (node/bun running a script) and compiled binary mode. * * @param cliArgs - CLI arguments to pass (e.g., ["server", "start", "--library", path]) * @returns Object with `command` (executable path) and `args` (arguments array) */ export declare function getCliSpawnArgs(cliArgs: string[]): { command: string; args: string[]; }; //# sourceMappingURL=spawn-args.d.ts.map