/** * Sensitive Information Filter * * 메모리 콘텐츠에서 민감 정보를 탐지하고 마스킹합니다. */ interface FilterResult { filtered: string; matchCount: number; } export declare const PATTERN_LABELS: string[]; /** * 콘텐츠에서 민감 정보를 [REDACTED_]로 치환 */ export declare function filterSensitiveInfo(content: string): FilterResult; /** * 파일 경로가 민감한 패턴에 해당하는지 검사 */ export declare function isSensitivePath(filePath: string, excludePatterns: string[]): boolean; export {}; //# sourceMappingURL=filter.d.ts.map