import type { IItem } from "@esri/arcgis-rest-portal"; import { IItemTemplate } from "../hub-types"; export declare const itemPropsNotInTemplates: string[]; /** * Given an item, remove a standard set of properties not needed in a template * TODO: This should land in a templating helper lib in hub.js * @param {Object} item Item to be normalized */ export declare function normalizeSolutionTemplateItem(item: IItem): IItemTemplate;