import { SpotifyApi } from "../SpotifyApi.js"; export default class EndpointsBase { protected api: SpotifyApi; constructor(api: SpotifyApi); protected getRequest(url: string): Promise; protected postRequest(url: string, body?: TBody, contentType?: string | undefined): Promise; protected putRequest(url: string, body?: TBody, contentType?: string | undefined): Promise; protected deleteRequest(url: string, body?: TBody): Promise; protected paramsFor(args: any): string; }