import type { IUser } from "@esri/arcgis-rest-portal"; /** * Does a user have all the privileges in the passed in array * @param {current user from session} user * @param {array} privileges */ export declare function hasAllPrivileges(user: IUser, privileges: string[]): boolean;