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