import { List, Map } from "immutable"; import { Action, Reducer } from "redux"; export declare const byRef: (state: Map | undefined, action: Action) => Map; export declare const refs: (state: List | undefined, action: Action) => List; export declare const kernelspecs: Reducer<{ byRef: Map; refs: List; }, Action>;