import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { updateTransactions } from '../../../../entity/transaction/transactionReducer'; import { RootState } from '../../../../rootStateTypes'; import { ZeniAPI } from '../../../../zeniAPI'; import { searchTransactionsForManualMatch, searchTransactionsForManualMatchFailure, searchTransactionsForManualMatchSuccess } from '../../reducers/missingReceiptsViewReducer'; /** * `auto_categorized` for manual transaction search (Unmatched). * Backend contract TBD — align with `fetchTransactionCategorizationEpic` (`selectedTab === 'autoCategorized'`) * when the expense-automation API documents the intended filter for this flow. */ export declare const MANUAL_TRANSACTION_SEARCH_AUTO_CATEGORIZED = false; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const searchTransactionsForManualMatchEpic: (actions$: ActionsObservable, state$: StateObservable, zeniAPI: ZeniAPI) => Observable;