import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { updateAddresses } from '../../../entity/address/addressReducer'; import { updateCompanies } from '../../../entity/company/companyReducer'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { newAddressInLocalStore, removeNewAddressDataInLocalStore } from '../../addressView/addressViewReducer'; import { fetchCompanyBillingAddress, fetchCompanyBillingAddressFailure, fetchCompanyBillingAddressSuccess } from '../settingsViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchCompanyBillingAddressEpic: (actions$: ActionsObservable, state$: StateObservable, zeniAPI: ZeniAPI) => Observable;