import { AppSharedState } from '../../appState/state.models'; /** * Get map set by map key * @param state shared state * @param mapSetKey map identifier * @returns {string[]} list of maps in the map set */ export declare const getMapSetMaps: (state: AppSharedState, mapSetKey: string) => string[] | undefined;