import { IBeatmapPackType, IDefaultParams, IError } from "../../types";
import { BeatmapsPacksListResponse } from "../../types/v2/beatmaps_packs_list";
type Response = BeatmapsPacksListResponse & IError;
export declare const beatmaps_packs_list: (params: {
    type: IBeatmapPackType;
    cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
