/** * Toxicity detection (keyword blocklist) */ export interface ToxicityCheckOptions { customPatterns?: RegExp[]; customKeywords?: string[]; useDefaults?: boolean; } export declare function checkToxicity(text: string, options?: ToxicityCheckOptions): { detected: boolean; matchedPattern?: string; }; //# sourceMappingURL=toxicity.check.d.ts.map