import { LatLng, RequestError } from '@open-tender/types'; import { AppState } from '../app'; export interface GeoLocationState { latLng: LatLng | null; error: RequestError; loading: boolean; } export declare const resetGeolocation: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"geolocation/resetGeolocation">, setGeoLatLng: import("@reduxjs/toolkit").ActionCreatorWithPayload, setGeoError: import("@reduxjs/toolkit").ActionCreatorWithPayload, setGeoLoading: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"geolocation/setGeoLoading">; export declare const selectGeo: (state: AppState) => GeoLocationState; export declare const selectGeoLatLng: (state: AppState) => LatLng | null; export declare const geolocationReducer: import("redux").Reducer;