import { IStrategy, DecompositionResult } from "./base.js";
import { SwarmObjective } from "../types.js";
/**
 * Testing Strategy - Comprehensive testing coordination with distributed validation
 * Based on the Testing Swarm Pattern from swarm documentation
 *
 * Features:
 * - Test planning and strategy
 * - Test case generation
 * - Parallel test execution
 * - Results aggregation and reporting
 */
export declare class TestingStrategy implements IStrategy {
    decomposeObjective(objective: SwarmObjective): Promise<DecompositionResult>;
}
//# sourceMappingURL=testing.d.ts.map