/** * Secret Redaction Utility * Filters sensitive information from command output before logging */ /** * Redacts secrets from text * @param text The text to redact * @returns Text with secrets replaced with [REDACTED] */ export declare function redactSecrets(text: string): string; /** * Check if text contains potential secrets (for warning purposes) * @param text The text to check * @returns True if potential secrets are detected */ export declare function containsSecrets(text: string): boolean; //# sourceMappingURL=redact-secrets.d.ts.map