Hide checkbox from angular mat-select in case of multiple select?

Each mat-option has a mat-pseudo-checkbox to handle checkbox styles (I inspected it from chrome dev tools). Try this (Angular 5, Material 2):

::ng-deep .mat-option:first-child .mat-pseudo-checkbox{ display: none; }