import { ActionReducer, Action } from '@ngrx/store'; import { GeoTypeState } from './geo-type/geo-type.reducer'; import { GeoSearchState } from './geo-search/geo-taregting-search.reducer'; import { GeoModeState } from './geo-mode/geo-mode.reducer'; import { GeoSelectedState } from './geo-selected/geo-selected.reducer'; import { GeoLocationTypeState } from './geo-location-type/geo-location-type.reducer'; import { GeoInfoState } from './geo-info/geo-info.reducer'; export interface GeoState { geoSearch: GeoSearchState; geoSelected: GeoSelectedState; geoType: GeoTypeState; geoMode: GeoModeState; geoLocationType: GeoLocationTypeState; geoInfo: GeoInfoState; } export declare const GEO_TARGETING_STATE_KEY = "geo"; export declare const geoReducer: ActionReducer;