import { Action } from '@ngrx/store'; import { GeoIdService } from './geo.id'; export interface GeoAction extends Action { type: string; payload?: any; } export declare class GeoActions { private geoIdService; static GEO_TARGETING_INIT: string; static GEO_TARGETING_DESTROY: string; init(): GeoAction; destroy(): GeoAction; constructor(geoIdService: GeoIdService); }