/** * Repair Commands * * CLI commands for automatic test repair. */ import { Command } from 'commander'; /** * Repair analyze command */ export declare function createRepairAnalyzeCommand(): Command; /** * Repair suggest command */ export declare function createRepairSuggestCommand(): Command; /** * Repair fix command */ export declare function createRepairFixCommand(): Command; /** * Repair interactive command */ export declare function createRepairInteractiveCommand(): Command; /** * Create main repair command group */ export declare function createRepairCommand(): Command;