import { Http } from '../helpers/Http'; import { AudioAnalysis, AudioFeatures, Track } from '../types/SpotifyObjects'; import { MarketOptions } from '../types/SpotifyOptions'; export declare class TracksApi { private http; constructor(http: Http); getAudioAnalysisForTrack(trackId: string): Promise; getAudioFeaturesForTrack(trackId: string): Promise; getAudioFeaturesForTracks(trackIds: string[]): Promise>; getTrack(trackId: string, options?: MarketOptions): Promise; getTracks(trackIds: string[], options?: MarketOptions): Promise>; } //# sourceMappingURL=TracksApi.d.ts.map