import type { LTUserRole, LTRoleType } from '../../types'; export declare function isValidRoleType(type: string): type is LTRoleType; export declare function addUserRole(userId: string, role: string, type: LTRoleType): Promise; export declare function removeUserRole(userId: string, role: string): Promise; export declare function getUserRoles(userId: string): Promise; export declare function hasRole(userId: string, role: string): Promise; export declare function hasRoleType(userId: string, type: LTRoleType): Promise;