import { ActionReducer } from '@ngrx/store'; import { LocationTypeValue } from '../geo.interface'; export interface LocationType { id: string; name: string; info: string; showInfo: boolean; value: Array; } export interface GeoLocationTypeState { types: Array; selectedType: LocationType | null; isOpen: boolean; } export declare const geoLocationTypeInitial: GeoLocationTypeState; export declare const GEO_TARGETING_LOCATION_TYPE_KEY = "geoLocationType"; export declare const geoLocationTypeReducer: ActionReducer;