/** * Gets the current page to render, which may be undefined if the current page is the "hub". * @param {string} pageId The current page identifier. * @param {Array} pages All of the pages in the form. * @param {object} hub The hub, if there is one. * @returns The current page to render. */ declare const getPage: (pageId: any, pages: any, hub: any) => any; export default getPage;