/** * @file Prompt alignment scorer * Measures how well the response aligns with prompt instructions */ import type { LLMScorerConfig, ScoreResult, ScorerInput } from "../../../types/index.js"; import { BaseLLMScorer } from "./baseLLMScorer.js"; export declare class PromptAlignmentScorer extends BaseLLMScorer { constructor(config?: Partial); generatePrompt(input: ScorerInput): string; parseResponse(response: string, _input: ScorerInput): Partial; } export declare function createPromptAlignmentScorer(config?: Partial): Promise;