/**
 * Create a simple mapped reducer fn
 *
 * @param propertyKey
 * @param args
 * @returns {function(S, M): S}
 */
export declare function makeMappedReducerFn<S extends any, M>(propertyKey: string, args: any): (state: S, message: M) => S;
