/** * Source-side secret redaction for aih's OWN printed/written output (digests, * reports, roll-ups) — distinct from the collector layer (telemetry, destination) * and the gitleaks layer (scan). AWS / private-key patterns are imported from * {@link ./gitleaks.js}; provider token shapes are imported from * {@link ./token-patterns.js}, shared with the config and MCP detector paths. * * The added patterns (sk-ant / ghp_ / bearer / `KEY=VALUE`) mirror the redaction * set in LeanHarness `.lh/policies/claude-code.yml` (MIT) — concept only, regexes * authored against aih's needs. */ /** Replace any matched secret material in `text` with `[REDACTED]`. */ export declare function redactSecrets(text: string): string;