/** * update task states in sections * @param {object[]} sections - array of sections * @param {object} taskStates - update task states * @param {boolean} nonSequential - true if tasks can be performed non-sequentially * @param {object} data - current form data * @returns {object[]} - updated sections - note this is a clone */ declare const getUpdatedSectionStates: (sections: any, taskStates: any, nonSequential?: boolean, data?: null) => any; export default getUpdatedSectionStates;