/** * Matcher for query * Ported from https://github.com/optimizely/client-js/blob/5025fb16720e35213b822c0e673a265d24ae4bff/src/plugins/feature_query/matchers/query.js * @module */ import { Condition, ProfileAttributes } from '../../../models'; /** * @type ConditionMatcher */ declare const _default: { fieldsNeeded: string[]; /** * @param {Object} value * @param {Condition} cond * @return {Boolean} */ match: (value: ProfileAttributes, cond: Condition) => boolean; }; export default _default;