import { Command } from '../Command.js';
/**
 * Test crew command optimized for memory efficiency and type safety
 * Implements proper null checking and string validation
 */
export declare class TestCrewCommand extends Command {
    readonly name = "test-crew";
    readonly description = "Test the crew and evaluate the results";
    readonly syntax = "[options]";
    readonly examples: string[];
    execute(args: string[]): Promise<void>;
    /**
     * Parse command line arguments for the test-crew command
     * Optimized for handling various argument formats
     */
    protected parseArgs(args: string[]): {
        iterations: number;
        model: string;
        verbose: boolean;
    };
}
//# sourceMappingURL=TestCrewCommand.d.ts.map