import { AppSharedState } from '../state.models'; import { MapView } from '../../models/models.mapView'; /** * Get map view by map key * @param state AppSharedState * @param key map key * @returns {MapView|null} map view */ export declare const getMapViewByKey: (state: AppSharedState, key: string) => MapView | null;