/**
 * Testing function prompts for SoloFlow MCP
 * Testing and quality assurance functions
 */
export declare function testingCreateTestPlanPrompt(args: {
    feature?: string;
    testType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function testingWriteUnitTestsPrompt(args: {
    component?: string;
    language?: string;
    framework?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function testingRunTestsPrompt(args: {
    testType?: string;
    environment?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function testingTestReportPrompt(args: {
    testRun?: string;
    environment?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
export declare function testingPerformanceTestPrompt(args: {
    component?: string;
    loadType?: string;
}): Promise<{
    messages: Array<{
        role: "user";
        content: {
            type: "text";
            text: string;
        };
    }>;
}>;
//# sourceMappingURL=testing-prompts.d.ts.map