/** * Run operations, specified in a page's config, on formData. * * The result of an operation will be placed in data according * to the operations 'output' string. This string is a dot * separated fieldId. If any part of the output doesn't exist, * then it is created. * * The page's onChange handler is passed in here in case any * operation needs to persist its value within formData. Normally * any operation result only lasts until the page is re-rendered. * * @param {object} config The config for the page. * @param {object} data The page's formData. * @param {function} onChange The page's onChange handler. * @returns data with the results of any operations included. */ declare const runPageOperations: (config: any, data: any, onChange: any) => any; export default runPageOperations;