import { Command } from 'commander'; export interface RunOptions { config: string; name?: string; owner?: string; id?: string; parallel?: boolean; timeout?: number; saveRaw?: boolean; output?: 'json' | 'yaml' | 'table'; outputFile?: string; verbose?: boolean; } export declare function runCommand(): Command;