/**
 * Harmful Content Detection
 *
 * Detects potentially harmful content patterns.
 * Pattern-based detection with honest limitations.
 *
 * @module csm6/security/harmful-content
 * @author Haiec
 * @license MIT
 */
import { Finding } from '../../types/results';
/**
 * Check for harmful content
 */
export declare function checkHarmfulContent(content: string): Finding[];
