type ConditionValue = string | number | boolean; /** * Checks all other form values in case any have a * trigger value that makes this field required. * * @example * ```json * [ * { "if": { "age": [17, 18], "city": ["Taupō"] } }, * { "if": { "age": [19, 20] } } * ] * ``` * * This means `[(age=17 OR age=18) AND (city=Taupō)] OR [(age=19 OR age=20)]` */ export declare const isConditionMet: (condition: Record, formValues: Record) => boolean; export {};