/** * Formats the data for all components on a form, according to each component's format configuration. * @param {object} form The form to format the components for. * @param {object} data The top-level form data. * @param {string} eventType What type of event initiated this call. */ declare const formatDataForForm: (form: any, baseData: any, eventType: any) => any; export default formatDataForForm;