import { Context } from "koishi";
import { Config } from "../../../config";
import { ScoreSaberUser, ScoreSaberUserResponse } from "../interfaces/scoresaber";
export declare const scRequest: (ctx: Context, cfg: Config) => {
    getScoreUserById: (userId: string) => Promise<ScoreSaberUser>;
    getScoreItemsById: (userId: string, page: number, pageSize?: number) => Promise<ScoreSaberUserResponse>;
};
