/** * Additional validator for the Container component type. * @param {object} data the form data * @param {object} config the config for the validation, must contain a property 'base' with the id of the conditionally required component and * a property 'check' which if the corresponding component has a value will turn off the required check for 'base' * @param {object} component the container component * @returns true if the user has entered data into the 'base' field or entered a value into the 'check' field to turn off the validation * otherwise returns false */ declare const conditionallyRequired: (data: any, config: any, component: any) => boolean; export default conditionallyRequired;