import { Command } from 'commander'; export interface LoadOptions { scenario: string; vus?: string; iterations?: string; duration?: string; stages?: string; output?: 'json' | 'yaml' | 'table' | 'csv'; verbose?: boolean; silent?: boolean; name?: string; description?: string; tags?: string; thresholds?: string; outputFile?: string; config?: string; } export declare function loadSubCommand(): Command;