import { AxiosResponse } from "axios";
import { RecentlyPlayed, Booked, UpBeatStats } from "../@types/types";
import { HTTP } from "./HTTP";
export declare class UpBeatClient extends HTTP {
    constructor();
    getStats(): Promise<AxiosResponse<UpBeatStats>>;
    getRecentlyPlayed(): Promise<AxiosResponse<RecentlyPlayed>>;
    getBooked(): Promise<AxiosResponse<Booked>>;
}
//# sourceMappingURL=UpBeatClient.d.ts.map