import { IErrorAction, IState } from './generic.types'; import { generateErrorHandlerAction } from './redux.helper'; import { IAppState } from './store.entity'; export { generateErrorHandlerAction, IState, IErrorAction }; export declare const selectError: (state: IAppState, errorKey: string) => { code?: string; isAxiosError: boolean; message: string; name: string; stack: string; }; export declare const errorReducer: (state: {}, action: IErrorAction) => IState;