/** * Utility functions for sanitizing sensitive data from error messages and objects */ /** * Sanitizes API keys and other sensitive data from strings * @param text - The text to sanitize * @returns Sanitized text with sensitive data redacted */ export declare function sanitizeText(text: string): string; /** * Sanitizes an error object by redacting sensitive data * @param error - The error object to sanitize * @returns Sanitized error object */ export declare function sanitizeError(error: any): any; /** * Logs an error with sanitized output * @param error - The error to log */ export declare function logSanitizedError(error: any): void; //# sourceMappingURL=sanitize.d.ts.map