/** * Validates all components within a container. * @param {object} container The container to validate. * @param {object} outerData The data to use that holds this component's value. * @param {object} formData The data at the top level of the form. * @returns Errors for all components within the container. */ declare const validateContainer: (container: any, outerData: any, formData: any) => any[] | { id: any; error: never; }; export default validateContainer;