import { Command } from 'commander'; export interface GlobalCliOptions { verbose?: boolean; /** commander negated option: `--no-color` sets this to false */ color?: boolean; apiUrl?: string; orgId?: string; userId?: string; apiKey?: string; } interface RuntimeConfig { setRuntime(key: 'apiUrl' | 'orgId' | 'userId' | 'apiKey', value: string): void; } export declare function addGlobalOptions(program: Command): Command; export declare function applyGlobalOptions(opts: GlobalCliOptions, config: RuntimeConfig): void; export {};