export interface WithholdingTaxSummaryResponse { year: number; annualSummary: { totalGrossAmount: number; totalIncomeTax: number; totalLocalTax: number; totalNetAmount: number; }; monthlyList: WithholdingTaxMonthItem[]; } export interface WithholdingTaxMonthItem { month: number; grossAmount: number; incomeTax: number; localTax: number; netAmount: number; paymentCount: number; }