import type { RedactionRule } from '../types/telemetry-export.js'; export declare const DEFAULT_RULES: RedactionRule[]; export declare function redactString(input: string, rules?: RedactionRule[]): { output: string; redactionCount: number; }; export declare function redactRecord(record: Record, rules?: RedactionRule[]): { output: Record; redactionCount: number; };