/** * Bona Iqiniso v3 backend powered by spring boot. * v3.0.0 * BI v3 REST API * Thaste IT * http://www.thaste.org/ * info@thaste.org * License of API * localhost:8080 */ export interface Role { id?: string; name?: NameRoleEnum; } export declare type NameRoleEnum = 'ROLE_ADMIN' | 'ROLE_MODERATOR' | 'ROLE_USER';