/** * PHI/PII Sanitizer - Scrubs sensitive data before sending to LLM * CRITICAL for HIPAA compliance of vlayer itself */ export interface SanitizationResult { sanitizedCode: string; phiFound: number; replacementMap: Map; warnings: string[]; } /** * Sanitizes code before sending to LLM API * Replaces PHI with safe placeholders */ export declare function sanitizeCodeForLLM(code: string, filePath: string): SanitizationResult; /** * Restores sanitized PHI (if needed for reporting) * Use with caution - only for local file output */ export declare function restoreSanitizedCode(sanitizedCode: string, replacementMap: Map): string; //# sourceMappingURL=sanitizer.d.ts.map