declare const module: { namespaced: boolean; state: { geoBounds: {}; holdedGeoBounds: {}; }; actions: { resetGeoBoundsForId({ commit }: { commit: any; }, boundsId: any): void; setGeoBoundsForId({ commit }: { commit: any; }, { bounds, boundsId }: { bounds: any; boundsId: any; }): void; resetHoldedGeoBoundsForId({ commit }: { commit: any; }, boundsId: any): void; setHoldedGeoBoundsForId({ commit }: { commit: any; }, { bounds, boundsId }: { bounds: any; boundsId: any; }): void; }; mutations: { SET_GEO_BOUNDS(state: any, { bounds, boundsId }: { bounds: any; boundsId: any; }): void; SET_HOLDED_GEO_BOUNDS(state: any, { bounds, boundsId }: { bounds: any; boundsId: any; }): void; }; getters: { getGeoBoundsById: (state: any) => (senderId: any) => any; getHoldedGeoBoundsById: (state: any) => (senderId: any) => any; getGeoBounds: (state: any) => any; }; }; export default module;