import type { JsonObject } from './types.js'; export interface RedactionOptions { replacement?: string; secretKeyPattern?: RegExp; secretValuePattern?: RegExp; additionalSecrets?: string[]; } export declare function redactText(value: string, options?: RedactionOptions): string; export declare function redactJson(value: T, options?: RedactionOptions): T; export declare function redactError(error: unknown, options?: RedactionOptions): JsonObject; //# sourceMappingURL=redaction.d.ts.map