/** * Common role combinations */ export declare enum RoleBits { /** 0001 = 1 */ VIEWER, /** 0011 = 3 */ EDITOR, /** 0111 = 7 */ MANAGER, /** 1111 = 15 */ OWNER }