import { Type } from'angular2/core';
/**
* @private
* Map of possible pages that can be navigated to using an Ionic NavController
*/exportdeclareclassNavRegistry {
private _pages;
constructor(pages?: Type[]);
get(pageName: any): Type;
set(page: any): void;
}