import { ZeniAPIResponse } from '../../responsePayload'; interface ReimbursementsCountPayload { count: number; currency_code: string; currency_symbol: string; total_amount: number; } type ReimbursementSubTabBasedCount = Record; export type TransactionTotalPayload = Record; type ReimbursementStagesPayload = Record; interface ReimbursementCardPayload { query: ReimbursementCardQuery; transaction_count: number; transaction_totals: TransactionTotalPayload; } export type FetchReimbursementCardResponse = ZeniAPIResponse; type ReimbursementCardQuery = { end_date: string; get_count_only: boolean; reimbursement_provider: string; reimbursement_stages: ReimbursementStagesPayload; start_date: string; transaction_type: string; }; export {};