import { FetchStateAndError, FetchedState } from '../../../../commonStateTypes/common'; import { SetupViewLocalData } from '../../commonSetup/setupViewState'; export type BillPaySetupViewLocalData = SetupViewLocalData; export interface BillPaySetupViewState extends FetchedState { isRefreshingViewInBackground: boolean; billPayTermsDetails?: { fetchStatus: FetchStateAndError; }; }