/** * Constants for suggestions retry logic */ declare const SUGGESTION_RETRY_CONFIG: { readonly MAX_RETRIES: 3; readonly COOLDOWN_MS: 5000; }; export { SUGGESTION_RETRY_CONFIG };