import { type TropeCategory } from './tropePatterns.js'; export interface TropeMatch { trope_name: string; category: TropeCategory; match_text: string; } export interface TropeScoreResult { hits: number; chars: number; rate_per_1k: number; matches: TropeMatch[]; } /** * Main entry point: score text for AI writing tropes. * * @param normalizedText - text after HTML/markdown stripping * @param rawText - original text preserving markdown formatting and em-dashes */ export declare function scoreTropes(normalizedText: string, rawText: string): TropeScoreResult; //# sourceMappingURL=tropeDetector.d.ts.map