import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { CardType } from '../dashboard/dashboardState'; import { fetchDashboardLayout, fetchDashboardLayoutFailure, fetchDashboardLayoutSuccess, updateDashboardLayout } from './dashboardLayoutReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchDashboardLayoutEpic: (actions$: ActionsObservable, _: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: undefined; type: "dashboardLayout/fetchDashboardLayout"; } | { payload: CardType[]; type: "dashboardLayout/fetchDashboardLayoutSuccess"; } | { payload: import("../../zeniAPIStatus").ZeniAPIStatus>; type: "dashboardLayout/fetchDashboardLayoutFailure"; } | { payload: CardType[]; type: "dashboardLayout/updateDashboardLayout"; }>;