/** * SMI-918: Analytics Constants * * Shared constants for analytics modules to eliminate magic numbers * and improve code maintainability. */ /** Number of days to retain analytics data before cleanup */ export declare const RETENTION_DAYS = 30; /** Cooldown period between suggestions in milliseconds */ export declare const SUGGESTION_COOLDOWN_MS: number; /** Maximum suggestions per day per user */ export declare const MAX_SUGGESTIONS_PER_DAY = 3; /** Length of truncated context hash */ export declare const CONTEXT_HASH_LENGTH = 8; /** Milliseconds in one day */ export declare const MS_PER_DAY: number; /** Length of truncated user ID hash */ export declare const USER_ID_HASH_LENGTH = 16; //# sourceMappingURL=constants.d.ts.map