import { ActionReducer } from '@ngrx/store'; export declare type InfoLevel = 'info' | 'error'; export interface GeoInfoState { message: string; level?: InfoLevel; isVisible?: boolean; canRevert?: boolean; revertKeys?: Array; } export declare const geoInfoInitial: GeoInfoState; export declare const GEO_TARGETING_INFO_KEY = "geoInfo"; export declare const geoInfoReducer: ActionReducer;