import { Action, CacheState } from './interface'; export declare enum CacheType { CREATE = "CREATE", CREATED = "CREATED", ACTIVE = "ACTIVE", DESTROY = "DESTROY" } declare const cacheReducer: (cacheStates: CacheState, action: Action) => CacheState; export default cacheReducer;