import { type ConditionalRestrictionTest, type DataRecord, type DataRecordValue } from '@overture-stack/lectern-dictionary'; /** * Check all conditions inside the `if` object of a Conditiohnal Restriction to determine if the condition is met for * a given field and its data record. This will apply all match rules inside each condition versus a field value and data record. */ export declare const testConditionalRestriction: (conditionalTest: ConditionalRestrictionTest, value: DataRecordValue, record: DataRecord) => boolean;