angular2 import HTTP_PROVIDERS
error message >> @angular/http/index"' has no exported member 'HTTP_PROVIDERS'.
import { Component } from '@angular/core';
import {NoticeService} from './products/product.service';
import {HTTP_PROVIDERS} from '@angular/http';
import 'rxjs/Rx';
@Component({
selector: 'my-app',
template: `
<h1>Hello {{name}}</h1>
<pm-products></pm-products>
`,
providers: [NoticeService, HTTP_PROVIDERS]
})