import type { RestrictedDataAuditEvent } from "./types/restricted-data.js"; export interface TelemetryRedactionReport { redactedFields: string[]; blockedFields: string[]; restrictedEvents?: RestrictedDataAuditEvent[]; } export declare function redactTelemetryData(value: T): { value: T; report: TelemetryRedactionReport; }; export declare function mergeRedactionReports(reports: TelemetryRedactionReport[]): TelemetryRedactionReport;