/** * Evaluates all condition(s) on a page, container, or component. * @param {object} options The container to consider. * @param {object} data The top-level form data. * @returns Boolean true if at least one conditions is met; false otherwise. */ declare const meetsOneCondition: (options: any, data: any) => boolean; export default meetsOneCondition;