import type { IItem } from "@esri/arcgis-rest-portal"; /** * Apply a hash of properties to an array of items. * Extracted to simplify testing. * @param {array} items Array of items to apply the properties to * @param {object} props hash of properties to apply to the item */ export declare function applyPropertiesToItems(items: IItem[], props: Record): IItem[];