Update
As of today, @angular/http has been deprecated, and @angular/common/http should be used instead. So the best way to work with http headers is to import import { HttpHeaders } from '@angular/common/http'; (documentation).
Old answer
The Headers type you are supposed to import is import { Headers } from '@angular/http';.
Check your imports