/** * Anonymization Pipeline — PII detection * * Q3: redactPII, anonymizeCFP, scanCFPForPII and the CFPFormat / AnonymizationLevel / * AnonymizationRecord types they depended on were deleted along with the * speculative pattern-sharing subtree that consumed them. Only detectPII * remains — it backs the `transfer_detect-pii` MCP tool. */ /** Result shape returned by detectPII. */ export interface PIIDetectionResult { found: boolean; count: number; types: Record; locations: Array<{ type: string; path: string; sample: string; severity: 'low' | 'medium' | 'high' | 'critical'; }>; } /** * Detect PII in a string */ export declare function detectPII(content: string): PIIDetectionResult; //# sourceMappingURL=index.d.ts.map