import { IUpdateItemResponse } from '@esri/arcgis-rest-portal'; import { IHubRequestOptions, IModel } from '@esri/hub-common'; /** * Given a Site Model and a set of Page Items * link Pages to the Site and the Site to the Pages * * @internal * @param {IModel} siteModel * @param {IItem[]} pageItems * @param {IHubRequestOptions} hubRequestOptions */ export declare function updateSitePages(siteModel: IModel, pageItemIds: string[], hubRequestOptions: IHubRequestOptions): Promise;