import { ModuleScore } from "../types"; export declare const analyze_user_sentences: (system: string, user: string) => { text: string; score: number; reasons: string[]; }[]; export declare const score_segments: (system: string, user: string) => ModuleScore; export declare const sanitize_user_input: (system: string, user: string) => { sanitized: string; removed: { text: string; reasons: string[]; }[]; changed: boolean; };