/** * Billing period information. */ export type BillingPeriod = { start_date: string; end_date: string; days: number; };