import { List, Map } from "immutable"; import { Action, Reducer } from "redux"; import * as React from "react"; export declare const byId: (state: Map> | undefined, action: Action) => Map; export declare const displayOrder: (state: List | undefined, action: Action) => List; export declare const transforms: Reducer<{ byId: Map; displayOrder: List; }, Action>;