import type { Effect } from 'redux-saga/effects';
export type Yield = Effect | {};
export type Return = void;
export type Next = any;