export interface DetectedPII {
    emails: string[];
    phones: string[];
    urls: string[];
}
export declare function detectPII(text: string): DetectedPII;
export declare function removePII(text: string, pii: DetectedPII): string;
export declare function removeContactFromObject(obj: any, changeLog: any): any;
//# sourceMappingURL=pii-detector.d.ts.map