export declare enum PermissionScopeType { MEMBER_CHANNEL = "memberChannel", ROLE_CHANNEL = "roleChannel", MEMBER = "member", ROLE = "role", CHANNEL = "channel" } export interface PermissionScope { type: T; scope: string; }