/** * Loop over an array of pages, merging any CollectionPages into a * single master page for that collection. A master page is created * for each unique collection.name that exists. * These master pages contain all the pages that are needed to * represent an item in that collection. * The master page for each collection is positioned at the index * of the first CollectionPage in that collection. * @param { array } pages Array of pages in the form. * @returns An array of the same pages, with a master page for each collection. */ declare const mergeCollectionPages: (pages: any) => any; export default mergeCollectionPages;