export type GlobalOptions = { apiUrl?: string; token?: string; profile?: string; projectId?: string; json?: boolean; jsonl?: boolean; noColor?: boolean; timeout?: string; verbose?: boolean; version?: boolean; help?: boolean; }; export type ParsedInvocation = { globalOptions: GlobalOptions; commandPath: string[]; commandArgs: string[]; }; export declare function parseInvocation(argv: string[]): ParsedInvocation;