import { Team } from "../models"; import { Service } from "./service"; export declare class TeamService extends Service { constructor(token: string, baseUrl: string); /** * Fetch a list of all teams. */ fetchTeams(): Promise; /** * Fetch a single team by ID. * * @param {Number} id The id of the team to find. */ fetchTeam(id: number): Promise; }