import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../../../rootStateTypes'; import { InvoicingSettingsViewActionType } from './settingsViewActionType'; /** * Saves the QBO local data. The screen fires this without a payload — the local * data is already in the store, so sending it back through the action would make * the page the carrier for state it does not own. Converting to the request body * happens here too, keeping the wire shape out of the screen. */ export declare const submitInvoicingQboSettingsEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;