/** * @file Toxicity analysis scorer * Detects harmful, offensive, or inappropriate content */ import type { LLMScorerConfig, ScoreResult, ScorerInput } from "../../../types/index.js"; import { BaseLLMScorer } from "./baseLLMScorer.js"; export declare class ToxicityScorer extends BaseLLMScorer { constructor(config?: Partial); generatePrompt(input: ScorerInput): string; parseResponse(response: string, _input: ScorerInput): Partial; } export declare function createToxicityScorer(config?: Partial): Promise;