import { User } from './User'; export interface Team { Id: string; Name: string; ExcludeFromSearch?: boolean; Owner?: User; }