import { ZeniAPIResponse } from '../../responsePayload'; interface BillsCountPayload { count: number; currency_code: string; currency_symbol: string; total_amount: number; } type BillPaySubTabBasedCount = Record; export type TransactionTotalPayload = Record; interface BillPayCardPayload { query: BillPayCardQuery; transaction_count: number; transaction_totals: TransactionTotalPayload; } export type FetchBillPayCardResponse = ZeniAPIResponse; type BillPayCardQuery = { bill_pay_provider: string; bill_stage_code: string; end_date: string; filter: string; get_count_only: boolean; is_include_approval_info: boolean; is_include_pending_approval_transaction_ids_for_user: boolean; sort_by: string; sort_order: string; start_date: string; transaction_type: string; }; export {};