import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchSuggestedQuestions, fetchSuggestedQuestionsFailure, fetchSuggestedQuestionsSuccess } from '../aiCfoViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType; /** * GET {aiCfoMicroServiceBaseUrl}/1.0/suggested-questions?page_context=... * * Appends `&no_card_created=true` when the action payload sets * `noCardCreated: true` (AI Card Creation flow on the cards list — the tenant * has not yet created any card). Any other value omits the flag entirely so * the existing call sites continue to issue the unchanged request. */ export declare const fetchSuggestedQuestionsEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => Observable;