/** * PII detection and redaction */ import type { PIIEntityType } from '../guardrails.types'; export declare function detectPII(text: string, entityTypes?: PIIEntityType[]): { entities: PIIEntityType[]; matches: string[]; }; export declare function redactPII(text: string, entityTypes?: PIIEntityType[]): string; //# sourceMappingURL=pii.check.d.ts.map