import { MessagingMethod } from '@nestjs.pro/common/dist/messaging/MessagingMethod'; import { PermissionsService } from './Permissions/PermissionsService'; import { RolesService } from './Roles/RolesService'; import { UsersService } from './Users/UsersService'; export declare class LocalRBACMessageBus { private readonly usersService; private readonly rolesService; private readonly permissionsService; constructor(usersService: UsersService, rolesService: RolesService, permissionsService: PermissionsService); handleMessage(methodCall: MessagingMethod): Promise; }