import { UserSession } from '@esri/arcgis-rest-auth'; import { IItem } from '@esri/arcgis-rest-portal'; /** * Get all the content for a group. * * This will automatically page over all items in the group * potentially returning 1000's of items * * Extracted into a separate function specifically for typing * * @internal * @param {string} id * @param {UserSession} session * @return {*} {Promise} */ export declare function getAllGroupContent(id: string, session: UserSession): Promise;