/** * Recommendations for securely handling different types of sensitive data. * These are shown to users when sensitive data is detected. */ /** * Get a recommendation message for a specific secret category */ export declare const getRecommendation: (category: string) => string; /** * Get a brief one-line recommendation for the summary output */ export declare const getBriefRecommendation: (category: string) => string; /** * Get the detection reason message based on why the value was flagged */ export declare const getDetectionReasonMessage: (reason: "property_name" | "value_pattern" | "high_entropy", propertyName?: string) => string;