import { Base, NevoboResponse, Pagination } from "../base"; import { Team } from "./types"; export declare class Teams extends Base { /** * @param team */ getTeam(team: string): Promise>; /** * Get all teams belonging to a Vereniging. If vereniging is not valid, this request returns the first page of getAllTeams() * @param vereniging */ getTeamsForVereniging(vereniging: string): Promise>; /** * Teams requires pagination, the limit per page is 1000 * @param pagination */ getAllTeams(pagination: Pagination): Promise>; }