declare const module: { namespaced: boolean; state: { map: null; }; actions: { loadMap({ commit, state }: { commit: any; state: any; }, { Leaflet, containerId }: { Leaflet: any; containerId: any; }): Promise; }; mutations: { SET_MAP(state: any, map: any): void; }; getters: { getMap: (state: any) => any; }; }; export default module;