export interface Team {
    name: string;
    color: string;
}
export declare const TEAMS: Record<number, Team>;
