import { ReducerOptions } from './types'; /** * Utility method for a consistent fetch pattern. Return the state if applicable and false otherwise. * Options * - state: the reducer state * - entityType: the entityType used to isolate the event type names * - action: action */ declare function reducer(options: ReducerOptions): (state: {}, action: any) => any; export default reducer;