import { Action } from '@ngrx/store'; export interface State { clusterDistance: number; } export declare const initialState: State; export declare function reducer(state: State | undefined, action: Action): State;