import { type DataRecordValue, type MatchRuleValue } from '@overture-stack/lectern-dictionary'; /** * Tests if the value has the same value as the value match rule. No type coercion is performed, strings * values only match strings, and arrays only match arrays. * * Strings are matched case insensitive and after trimming and forcing each string to lowercase. * @param valueRule * @param value * @returns */ export declare const testMatchValue: (valueRule: MatchRuleValue, value: DataRecordValue) => boolean;