/** * ng2-gm - Angular 2 components for Google Maps * @version v0.0.2 * @link https://github.com/williampaulo/angular2-google-maps#readme * @license MIT */ import { SebmGoogleMapRouterPanel } from '../directives/google-map-router-panel'; import { GoogleMapsAPIWrapper } from './google-maps-api-wrapper'; export declare class RouterPanelManager { private _mapsWrapper; constructor(_mapsWrapper: GoogleMapsAPIWrapper); init(routePanel: SebmGoogleMapRouterPanel): void; show(routePanel: SebmGoogleMapRouterPanel): void; hide(routePanel: SebmGoogleMapRouterPanel): void; update(routePanel: SebmGoogleMapRouterPanel): void; }