/** * Indicates whether or not a page should be shown on the CYA screen. * @param {object} page The page to consider. * @param {object} data The top-level form data. * @returns Boolean true if the page should be shown; false if not. */ declare const showFormPageCYA: (page: any, data: any) => any; export default showFormPageCYA;