import { Action } from '@ngrx/store'; import * as fromRouter from '@ngrx/router-store'; import { GeoState } from '../geo/geo.reducer'; import { TargetingState } from '../targeting/targeting.reducer'; export interface CustomAction extends Action { type: string; payload?: any; } export interface AppState { geo: GeoState; targeting: TargetingState; routerReducer: fromRouter.RouterReducerState; } export declare function rootReducer(state: any, action: any): any;