#!/usr/bin/env node interface CortexRunArgs { name?: string; device: string; command?: string[]; project: string | null; taskId: string | null; envPassthrough: string[]; logTailBytes: number; cancel: string | null; signal: string; stall: string; gpu: string; force: boolean; } declare function getCortexRunHelp(): string; /** * Returns true if the user is asking for help at the top level. * `--help` / `-h` that appear AFTER the `--` separator belong to the user * command and must not be treated as cortex-run help requests. */ declare function isHelpRequest(rawArgs: string[]): boolean; declare function parseCliArgs(): CortexRunArgs; export { parseCliArgs, getCortexRunHelp, isHelpRequest };