import { TrackerConfig, TrackerPayload } from "./types"; export declare const REDACTED_VALUE = "[redacted]"; export declare const normalizeKeySegments: (key: string) => string[]; export declare const matchesConfiguredKey: (key: string, configuredKeys: string[]) => boolean; export declare const redactSecretLikeText: (value: string) => string; export declare const sanitizePayload: (payload: TrackerPayload, config: TrackerConfig) => TrackerPayload;