import { MakeLeaderboard, IUser } from "./types";
declare const makeLeaderboard: ({ creds, contestIds, asManager, count, from, participantTypes }: MakeLeaderboard) => Promise<{
    contestants: IUser;
    problemIndexes: string[];
    problemLinks: string[];
    totalAccepts: number[];
    totalTries: number[];
}>;
export { makeLeaderboard };
