import type { Market, Album, MaxInt, Page, SimplifiedTrack } from '../types.js'; import EndpointsBase from './EndpointsBase.js'; export default class AlbumsEndpoints extends EndpointsBase { get(id: string, market?: Market): Promise; get(ids: string[], market?: Market): Promise; tracks(albumId: string, market?: Market, limit?: MaxInt<50>, offset?: number): Promise>; }