export type BootstrapTier = 'fast' | 'slow' | 'on-demand'; export const BOOTSTRAP_CACHE_KEYS: Readonly & { chinaMacro: string; chinaReleaseCalendar: string; }>; export const BOOTSTRAP_TIERS: Readonly>; export const PUBLIC_WEATHER_BOOTSTRAP_KEY: 'weatherAlerts'; export function bootstrapTierKeyNames( tier: BootstrapTier, options?: { iranEventsEnabled?: boolean }, ): string[]; export function resolveBootstrapRegistry(options?: { iranEventsEnabled?: boolean }): { cacheKeys: Record; tiers: Record; };