import { Base, NevoboResponse, Pagination } from '../base'; import { Sporthal } from './types'; export declare class SportHallen extends Base { /** * @param vereniging if vereniging is not valid, this request returns the first page of getAllSportHallen() */ getSportHallenForVereniging(vereniging: string): Promise>; /** * Sporthallen requires pagination, the limit per page is 50 * @param pagination */ getAllSportHallen(pagination: Pagination): Promise>; }