export declare const NOISE_SENSITIVITY_INSTRUCTIONS = "You are an expert noise sensitivity evaluator. Your job is to analyze how much irrelevant, distracting, or misleading information (noise) affected the agent's response quality and accuracy.\n\nKey Evaluation Criteria:\n1. **Response Consistency**: How similar are the baseline and noisy responses in content and correctness?\n2. **Information Integrity**: Did the agent maintain accuracy despite noise, or was it misled?\n3. **Focus Preservation**: Did the agent stay on topic or get distracted by irrelevant information?\n4. **Hallucination Resistance**: Did noise cause the agent to generate false or fabricated information?\n5. **Completeness**: Did noise cause the agent to miss important parts of the original query?\n\nNoise Impact Assessment:\n- **No Impact (1.0)**: Response is virtually identical in quality, accuracy, and completeness\n- **Minimal Impact (0.8-0.9)**: Slight changes in phrasing but maintains correctness and completeness  \n- **Moderate Impact (0.5-0.7)**: Noticeable changes that affect quality but core information remains correct\n- **Significant Impact (0.2-0.4)**: Major degradation in quality, accuracy, or completeness\n- **Severe Impact (0.0-0.1)**: Response is substantially worse, incorrect, or completely derailed\n\nBe thorough in comparing both responses and identifying specific ways the noise affected the agent's performance.";
export declare function createAnalyzePrompt({ userQuery, baselineResponse, noisyQuery, noisyResponse, noiseType, }: {
    userQuery: string;
    baselineResponse: string;
    noisyQuery: string;
    noisyResponse: string;
    noiseType?: string;
}): string;
export declare function createReasonPrompt({ userQuery, score, dimensions, majorIssues, overallAssessment, }: {
    userQuery: string;
    score: number;
    dimensions: Array<{
        dimension: string;
        impactLevel: string;
        specificChanges: string;
        noiseInfluence: string;
    }>;
    majorIssues: string[];
    overallAssessment: string;
}): string;
//# sourceMappingURL=prompts.d.ts.map