valueCahnges() property does not exists

Hi, i am using a code

getDatafromFirebase(){
this.afd.list(’/chats’).valueChanges.subscribe(
data => {
console.log(JSON.stringify(data))
this.itmes = data;
}
)
}
to display data from firebase in ionic app
but
i had an error in as below…
Property ‘valueChanges’ does not exist on type ‘FirebaseListObservable<any[]>’.

I have imported
import { AngularFire, FirebaseListObservable } from ‘angularfire2’;
import { AngularFireDatabase } from ‘angularfire2/database’

please help to resolve this