import { ActionsObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchRoutineRuns, fetchRoutineRunsFailure, fetchRoutineRunsSuccess } from '../aiCfoViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType; /** * GET /1.0/routines/{scheduleId}/runs — one routine's run history. * * switchMap: only the history the user has open matters, so expanding a second * routine while the first is still loading should abandon the first rather than * race it into the single slot the state keeps. */ export declare const fetchRoutineRunsEpic: (actions$: ActionsObservable, _state$: unknown, zeniAPI: ZeniAPI) => Observable;