/** * Formats the data for all components on a page, according to each component's format configuration. * @param {object} page The page 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 formatDataForPage: (page: any, data: any, eventType: any) => void; /** * Formats the data for all components on a page, according to each component's format configuration. * @param {Array} pages The pages to format the components for. * @param {object} data The top-level form data. * @param {string} eventType What type of event initiated this call. */ export declare const formatDataForPages: (pages: any, data: any, eventType: any) => void; export default formatDataForPage;