import type { Team } from '../../domain/entities/Team'; export interface UpdateTeamCommandDTO { teamId: string; updates: Partial>; updatedBy: string; }