import { FetchStateAndError } from '../../commonStateTypes/common'; import { CardTenantProfileRow, CreditAgentEntityState, CreditAgentMacro } from '../../entity/creditAgent/creditAgentState'; import { RootState } from '../../rootStateTypes'; import { CreditAgentUIState, CreditAgentViewState } from './creditAgentViewState'; export declare const getCreditAgentView: (state: RootState) => CreditAgentViewState; export declare const getCreditAgentEntity: (state: RootState) => CreditAgentEntityState; export declare const getCreditAgentMacro: (state: RootState) => { fetchStatus: FetchStateAndError; updateStatus: FetchStateAndError; data?: CreditAgentMacro; }; export interface CardProfileRowWithStatus extends CardTenantProfileRow { analyzeStatus: FetchStateAndError; updateStatus: FetchStateAndError; } export declare const getCardProfilesData: (state: RootState) => { fetchStatus: FetchStateAndError; rows: CardProfileRowWithStatus[]; uiState: CreditAgentUIState; };