/** * Regional detection constants */ export declare const REGION_STORAGE_KEY = "@plyaz/api:userRegion"; /** * Confidence levels for region detection */ export declare const REGIONAL_CONFIDENCE_LEVELS: { readonly CDN_HEADER: 0.95; readonly TIMEZONE_DIRECT: 0.9; readonly TIMEZONE_PREFIX: 0.8; readonly HIGH: 0.8; readonly LOCALE_DIRECT: 0.7; readonly MEDIUM: 0.7; readonly GEOLOCATION: 0.6; readonly LOCALE_LANGUAGE: 0.5; readonly LOW: 0.5; readonly GLOBAL_FALLBACK: 0.3; readonly UNKNOWN_FALLBACK: 0.2; readonly FINAL_FALLBACK: 0.1; }; /** * Geographic coordinates for region detection */ export declare const COORDINATES: { readonly EU: { readonly MIN_LAT: 35; readonly MAX_LAT: 70; readonly MIN_LON: -10; readonly MAX_LON: 40; }; readonly US: { readonly MIN_LAT: 25; readonly MAX_LAT: 50; readonly MIN_LON: -125; readonly MAX_LON: -65; }; readonly US_WEST: { readonly MIN_LAT: 32; readonly MAX_LAT: 42; readonly MIN_LON: -125; readonly MAX_LON: -114; }; readonly US_EAST: { readonly MIN_LAT: 38; readonly MAX_LAT: 45; readonly MIN_LON: -80; readonly MAX_LON: -70; }; readonly ASIA: { readonly MIN_LAT: 18; readonly MAX_LAT: 54; readonly MIN_LON: 73; readonly MAX_LON: 135; }; readonly JAPAN: { readonly MIN_LAT: 30; readonly MAX_LAT: 46; readonly MIN_LON: 129; readonly MAX_LON: 146; }; }; export declare const CACHE_DURATION_MS: number; /** * Map regions to presets */ export declare const REGION_TO_PRESET: { readonly eu: "gdpr"; readonly us: "ccpa"; readonly 'us-ca': "ccpa"; readonly cn: "pipl"; readonly jp: "appi"; readonly ca: "global"; readonly global: "global"; }; //# sourceMappingURL=constants.d.ts.map