import type { DataRecordValue, MatchRuleCount } from '@overture-stack/lectern-dictionary'; /** * Test if the number of elements in an array value is an exact number, or within a range. * * Note: This test is only meant to match on array fields. It is counting the number of elements in an array. * This will always return false for non-array values, it does not count the character length of strings * or numbers. * @param count * @param value * @returns */ export declare const testMatchCount: (count: MatchRuleCount, value: DataRecordValue) => boolean;