/** * Looks at a condition object to see if the supplied value meets it. * The condition object contains an `op` property, along with a comparator * `value` (or `values`). * * The evaluation is strict - i.e., it matches the value AND the type. * * @param {object} condition The condition object. * @param {*} value The value to test against the condition. * * @returns A boolean indicating whether the value meets the condition. */ declare const meetsCondition: (condition: any, value: any, data: any) => any; export default meetsCondition;