import { UserSession } from '@esri/arcgis-rest-auth'; import * as portal from '@esri/arcgis-rest-portal'; /** * Move an item to a folder * If no folderId is supplied, this will just * resolve as successful, streamlining upstream * logic * * @export * @param {string} itemId * @param {string} folderId * @param {UserSession} session * @return {*} {Promise} */ export declare function moveItemToFolder(itemId: string, folderId: string, session: UserSession): Promise;