import { BaseObject } from './baseObject';
import { Team } from './team';
export interface UpdateTeams extends BaseObject {
    teams?: Team[];
}
