import { Dispatch } from 'react'; import { BaseAction } from 'types/base-redux.types'; import { Store } from 'redux'; import { State } from 'types/redux.types'; export declare const START_TIMEOUT = "START_TIMEOUT"; export declare const END_TIMEOUT = "END_TIMEOUT"; export declare const timeoutMiddleware: ({ dispatch }: Store) => (next: Dispatch) => (action: any) => void;