Just did a search for the above error and found this post which fixed the problem:
The solution was posed by gabfiocchi (reproduced here)
Go to components.module.ts.
You need import the Ionic module.
import { IonicModule } from 'ionic-angular'
Add on ngModule imports.
@NgModule({
declarations: [
...
],
imports: [
IonicModule
],
exports: [
...
]
})