import fallbackDynamicConfigs from '../../__generated__/default_configs'; type FallbackDynamicConfigs = typeof fallbackDynamicConfigs; export type DynamicConfigName = keyof FallbackDynamicConfigs; export type DynamicConfigValue = FallbackDynamicConfigs[Name]['value']; /** * Platform-agnostic Statsig dynamic-config hook with type-safe fallbacks and * country-conditional variant resolution. * * Country-code injection (rather than reading IP info inline) keeps the hook * pure with respect to platform: web's `useDynamicConfig` wrapper threads the * user's IP-derived `alpha2` from Moonpay/ipapi; React Native will thread a * platform-specific source. */ export declare const useDynamicConfig: (name: Name, options?: { bypassCountryCode?: boolean; countryCode?: string; }) => DynamicConfigValue; export {}; //# sourceMappingURL=useDynamicConfig.d.ts.map