To clarify what @rmalviya suggested, I assume that you are currently on Ionic version 3.xx, for this version you have two ways to import the native plugin and add the appropriate providers for the plugin.
1) You can add a provider to the current typescript page. So:
import { AngularFireAuth } from 'angularfire2/auth';
...
@Component({
selector: 'page-home',
templateUrl: 'home.html',
providers: [AngularFireAuth]
})
2) , app.modules.ts
import { AngularFireAuth } from 'angularfire2/auth';
...
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler},
AngularFireAuth
]