/** * Checks whether or not a page operation should run * based on the provided run_when config. * @param {object} config The run_when config. * @param {object} data The page's formData. * @returns */ declare const shouldRun: (config: any, data: any) => boolean; export default shouldRun;