export declare enum ORDER_DIRECTION { DESC = "DESC", ASC = "ASC" } /** * Overwrite entity access properties * - Default: no overwrite * - Private: items are automatically shared with group members; this prevent that * - Public: if a public endpoint exists, anyone may access this entity */ export declare enum ENTITY_ACCESS { DEFAULT = "default", PRIVATE = "private", PUBLIC = "public" }