import { GeoInfoState } from './geo-info.reducer'; import { GeoIdService } from '../geo.id'; import { Action } from '@ngrx/store'; export interface GeoInfoAction extends Action { type: string; payload?: any; } export declare class GeoInfoActions { private geoIdService; static SHOW_INFO: string; static HIDE_INFO: string; showInfo(info: GeoInfoState): GeoInfoAction; hideInfo(): GeoInfoAction; constructor(geoIdService: GeoIdService); }