import { Amount } from '../../commonStateTypes/amount'; import { FetchedState } from '../../commonStateTypes/common'; import { Report } from '../../commonStateTypes/viewAndReport/viewAndReport'; import { BillTab, BillsSubTabType } from '../spendManagement/billPay/billList/billListState'; declare const getBillPayAmountKey: (tab: BillTab, subTab: BillsSubTabType) => string; type BillPayAmountKey = ReturnType; export interface BillPayCardState extends FetchedState, Report { billPayAmountByKey: Record; transactionCount: number; } export {};