import { Track, TrendingOptions, TrendingTrackResponse } from "../@types/track";
export declare const getTracksByIds: (clientId: string, ids: number[]) => Promise<Track[]>;
export declare const getTrack: (clientId: string, url: string) => Promise<Track>;
export declare const getTrending: (clientId: string, options?: TrendingOptions | undefined) => Promise<TrendingTrackResponse>;
