import { UserWebmap } from "../context/authenticationContext"; import { WebmapSelf } from "./portal"; import { AccountSelf } from "../types/account"; /** * * @param webmaps A list of webmaps the current user is assigned to as returned from the Portal API * @param user The current user * @returns a list of webmaps that includes clusters and gebiete a user has access to */ export declare const getWebmapDetails: (webmaps: WebmapSelf[], user: AccountSelf) => Promise;