import { ICommand } from '@nestjs/cqrs'; export declare class CheckRolePermissionCommand implements ICommand { readonly tenantId: string; readonly roleId: string; readonly permissions: string[]; readonly includeRole: boolean; static readonly type = "[RolePermission] Check role permission"; constructor(tenantId: string, roleId: string, permissions: string[], includeRole?: boolean); }