import { ILoadingActionTypes } from '../actions/types'; interface IStateInterface { loading: boolean; messages: {}; error: string | null; title: string; index: number; } declare const loadingReducer: (state: IStateInterface, action: ILoadingActionTypes) => { loading: boolean; messages: {}; error: string; title: string; index: number; } | { index: number; loading: boolean; messages: {}; error: boolean; title: string; }; export { loadingReducer };