export declare function escapeRegex(value: string): string; /** * Strip personally identifiable path segments and usernames from arbitrary * text. Used on log contents, diagnostic JSON blocks, and the final issue body * so reports never leak usernames or home-directory paths. */ export declare function sanitizeContent(content: string): string; /** * Recursively sanitize any value by deep-walking objects/arrays. Strings are * passed through `sanitizeContent`; other primitives are preserved. */ export declare function sanitizeValue(value: unknown): unknown; //# sourceMappingURL=sanitize.d.ts.map