import type { RedactInput, RedactOptions, RedactResult } from "./types.js"; export { JdcPrivacyEngineError } from "./errors.js"; export type { RedactInput, RedactOptions, RedactResult, RedactSpan, RedactionStats, RedactScope, } from "./types.js"; export { loadRuleset, resetRulesetCacheForTests } from "./ruleset.js"; export { setLoggerForTests } from "./log.js"; export declare function redact(input: RedactInput | string, options?: RedactOptions): RedactResult;