import { GeoIdService } from '../geo.id'; import { Action } from '@ngrx/store'; export interface GeoSearchAction extends Action { type: string; payload?: any; } export declare class GeoSearchActions { private geoIdService; static PROCESS_INPUT_VALUE: string; static UPDATE_MODEL: string; processInputValue(inputValue: any): GeoSearchAction; updateModel(model: any): GeoSearchAction; constructor(geoIdService: GeoIdService); }