export interface SponsorshipRequestsPageDto { sections: Array<{ entityType: 'driver' | 'team' | 'season'; entityId: string; entityName: string; requests: Array<{ requestId: string; sponsorId: string; sponsorName: string; message: string | null; createdAtIso: string; raw: unknown; }>; }>; }