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