Angular Material 设计 - 导入元素错误

Angular Material Design - error of import elements

我收到一个错误:

Uncaught Error: Unexpected directive 'MdRadioGroup' imported by the module 'AppModule'. Please add a @NgModule annotation

在文件 app.module 我有:

import {
  MATERIAL_COMPATIBILITY_MODE,
  MdRadioGroup,
  MdButtonModule,
} from '@angular/material';

下面 @NgModule 部分:

 imports: [
   MdRadioGroup
 ]

但是不行

在模块中导入:

import { MdRadioModule } from '@angular/material';

然后在@NgModules:

imports: [
...
  MdRadioModule,
...
]