import { Epic } from 'redux-observable'; /** * Constructs an epic that convers an `ADD` action to a `SET` action * * @param aAddAction - the add action string * @param aSetAction - the set action string * * @returns the epic */ export declare const addToSetEpic: (aAddAction: string, aSetAction: string) => Epic;