import { ActionsObservable, StateObservable } from 'redux-observable'; import { updateBankAccounts } from '../../../../../entity/bankAccount/bankAccountReducer'; import { RootState } from '../../../../../rootStateTypes'; import { fetchBillDetail, updateBillDetail } from '../../billDetailView/billDetailViewReducer'; import { fetchBillAndInitializeLocalStore, initializeBillToLocalStore, waitForBillDetailThenInitializeLocalStore } from '../editBillViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchBillAndInitializeLocalStoreEpic: (actions$: ActionsObservable, state$: StateObservable) => import("rxjs").Observable; export declare const waitForBillDetailThenInitializeLocalStoreEpic: (actions$: ActionsObservable, _: StateObservable) => import("rxjs").Observable<{ payload: { billId: string; }; type: "editBillView/initializeBillToLocalStore"; }>;