/**
 * @file Tone consistency scorer
 * Checks for consistent tone throughout the response
 */
import type { LLMScorerConfig, ScoreResult, ScorerInput } from "../../../types/index.js";
import { BaseLLMScorer } from "./baseLLMScorer.js";
export declare class ToneConsistencyScorer extends BaseLLMScorer {
    constructor(config?: Partial<LLMScorerConfig>);
    generatePrompt(input: ScorerInput): string;
    parseResponse(response: string, _input: ScorerInput): Partial<ScoreResult>;
}
export declare function createToneConsistencyScorer(config?: Partial<LLMScorerConfig>): Promise<ToneConsistencyScorer>;
