/** * 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 all conditions are met; false otherwise. */ declare const meetsAllConditions: (options: any, data: any) => boolean; export default meetsAllConditions;