import { IGroupTemplate } from "../types"; import type { IUser } from "@esri/arcgis-rest-portal"; /** * Updates template based upon new privPropValues property * In the templates config hash. * This allows us to conditionally change out parts of the template * @param {object} user * @param {object} template * @returns {object} Returns updated template */ export declare function applyPrivPropValuesToTemplate(user: IUser, template: IGroupTemplate): IGroupTemplate;