import { GeoItem } from '../geo-item.interface'; import { GeoIdService } from '../geo.id'; import { Action } from '@ngrx/store'; export interface GeoSelectedAction extends Action { type: string; payload?: any; } export declare class GeoSelectedActions { private geoIdService; static ADD_ITEMS: string; static SET_ITEMS: string; static REMOVE_ITEMS: string; static UPDATE_ITEMS: string; addItems(items: GeoItem[]): GeoSelectedAction; setItems(items: GeoItem[]): GeoSelectedAction; removeItems(items: GeoItem[]): GeoSelectedAction; updateItems(items: GeoItem[]): GeoSelectedAction; constructor(geoIdService: GeoIdService); }