import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { updateLoggedInUser, verifyDeviceWithTwoFA, verifyDeviceWithTwoFAFailure, verifyDeviceWithTwoFASuccess } from '../tenantReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const verifyDeviceWithTwoFAEpic: (actions$: ActionsObservable, _: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: { userPayload: import("../tenantPayload").LoggedInUserPayload; zeniSessionId: string; authProvider: import("../tenantTypes").AuthProvider; }; type: "tenant/updateLoggedInUser"; } | { payload: { userId: string; zeniSessionId: string | undefined; }; type: "tenant/fetchAllTenants"; } | { payload: { userId: string; sessionId: string; }; type: "tenant/verifyDeviceWithTwoFASuccess"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "tenant/verifyDeviceWithTwoFAFailure"; }>;