import { Region } from '../types'; /** * Used for determining the if current region is using the optOut framework * It follows the following logic in order: * 1) If there's no geolocation rule for the specified region * then use the rule for DEFAULT region * - Otherwise use the DEFAULT_FRAMEWORK * 2) Use geolocation rule */ /** * optIn: Users must opt in to tracking (EU) * optOut: Users must opt out of tracking (non-EU) * We use the most restrictive framework (optIn) if we don't know the framework */ declare const isOptOut: (region: Region) => boolean; export default isOptOut;