import { IHubRequestOptions, IModel } from "../../hub-types"; /** * Given a Site Model, register the domains with the Domain Service. * * For Portal, this will return a sparse entry that contains just the portal clientKey * * This should only be used when creating a site. To update domains related * to a site, use the `addDomain` and `removeDomain` functions directly * * @param {Object} model site model * @param {IHubRequestOptions} hubRequestOptions */ export declare function addSiteDomains(model: IModel, hubRequestOptions: IHubRequestOptions): Promise;