/** * Matcher for IP Geolocation ("location") * * Ported from [feature_location@ea4ca3c627c5e9683f58e018da7f2ee923c3e32b](https://github.com/optimizely/client-js/blob/ea4ca3c627c5e9683f58e018da7f2ee923c3e32b/src/plugins/feature_location/matchers/location.js#L18). * Changelog: * - Return undefined on unknown location * @module */ import { Condition, ProfileAttributes } from '../../../models'; declare const _default: { fieldsNeeded: string[]; match: (profile: ProfileAttributes, cond: Condition) => boolean | undefined; }; export default _default;