/**
 * Different types for sending request to the backend
 */
export declare enum AccessTypes {
    /**
     * List of occurences or Entity
     */
    LST = "lst",
    /**
     * one Occurence without any subentity
     */
    OCC = "occ",
    /**
     * occurence with all the subentites
     */
    COL = "col"
}
