/** * ViewData for RenewalAlert */ export interface RenewalAlertViewData { id: string; name: string; type: 'league' | 'team' | 'driver' | 'race' | 'platform'; renewDate: string; price: number; }