/** * Gets an array of standardised action objects for a page. * @param {object} page The page to get the actions for. * @returns Standardised action objects. * @description Standardises actions specified on a page into ones suitable for this version of the * Form Renderer. * * `action.href` and `action.url` have been deprecated in favour of `action.page` but this method * will convert both by taking the final part of the relative path: * - `href: '/bravo'` => `page: 'bravo'` */ declare const getPageActions: (page: any) => any; export default getPageActions;