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