/** * Redact sensitive values from strings before logging */ /** * Redacts sensitive values from JSON-like strings * Matches patterns like "password":"value", "mnemonic":"value", "secret":"value" * and replaces the value portion with [REDACTED] */ export declare function redactSensitive(input: string): string; //# sourceMappingURL=redact.d.ts.map