type PiiPatternKey = 'creditCardNumber' | 'streetAddress' | 'phoneNumber' | 'usSocialSecurityNumber' | 'emailAddress' | 'password' | 'credentials'; export declare const piiPatterns: Record; /** Fast guards — skip full regex when a pattern cannot match. */ export declare const patternPrechecks: Record boolean>; export type { PiiPatternKey }; export declare const MESSAGE_PATTERN_KEYS: PiiPatternKey[]; /** Stack traces skip expensive patterns that rarely appear in frames. */ export declare const STACK_PATTERN_KEYS: readonly PiiPatternKey[];