/** * Gets a configuration object for the Check your answers screen. * @param {string} pageId The current page identifier. * @param {object} hub The hub, if there is one. * @returns A configuration object for the Check your answers screen. */ declare const getCYA: (pageId: any, pages: any, hub: any) => { title: string; hideChangeActions?: undefined; hideGroupActions?: undefined; } | { title?: undefined; hideChangeActions?: undefined; hideGroupActions?: undefined; } | { title: any; hideChangeActions: any; hideGroupActions: any; } | undefined; export default getCYA;