import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { doMagicLinkSignIn, magicLinkSignInFailure, magicLinkSignInSuccess, updateLoggedInUser } from '../tenantReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const doMagicLinkSignInEpic: (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; sessionId: string; }; type: "tenant/magicLinkSignInSuccess"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "tenant/magicLinkSignInFailure"; } | { payload: { otpChallenge: string; userEmail: string; twoFAPhoneNumber: string; }; type: "tenant/trigger2FA"; } | { payload: { userId: string; zeniSessionId: string | undefined; }; type: "tenant/fetchAllTenants"; }>;