/** * QA360 Retry Commands (F8 Smart Retry Module) * * CLI commands for managing and viewing retry statistics and configuration. */ import { Command } from 'commander'; /** * Retry history command */ export declare function retryHistoryCommand(options: { testId?: string; limit?: number; json?: boolean; }): Promise; /** * Retry stats command */ export declare function retryStatsCommand(options: { strategy?: string; json?: boolean; }): Promise; /** * Retry configure command */ export declare function retryConfigureCommand(options: { strategy?: string; maxRetries?: number; delay?: number; jitter?: number; show?: boolean; }): Promise; /** * Retry test command */ export declare function retryTestCommand(options: { testId?: string; strategy?: string; dryRun?: boolean; }): Promise; /** * Create retry commands */ export declare function createRetryCommands(): Command;