import { ActionReducer } from '@ngrx/store'; export interface GeoType { id: string; name: string; } export interface GeoTypeState { types: Array; selectedType: GeoType | null; selected: Array; isOpen: boolean; } export declare const geoTypeInitial: GeoTypeState; export declare const GEO_TARGETING_TYPE_KEY = "geoType"; export declare const geoTypeReducer: ActionReducer;