import { t as BaseGrpcConsumer } from "./BaseGrpcConsumer-DEH9Rq7m.js"; //#region src/client/abacus/grpc/AbacusGrpcApi.d.ts declare class AbacusGrpcApi extends BaseGrpcConsumer { protected module: string; private get client(); fetchAccountLatestPoints(address: string): Promise; fetchAccountDailyPoints(address: string, daysLimit?: number): Promise; fetchAccountWeeklyPoints(address: string, weeksLimit?: number): Promise; } //#endregion //#region src/client/abacus/types/abacus.d.ts interface PointsLatestResponse { rank: string; totalPoints: string; totalPointsPrecise: number; league: string; updatedAt: string; pointsSeason1: number; pointsBonus: number; } interface PointsStatsRow { week: string; day?: string; points: string; pointsPrecise: number; volume: number; } //#endregion export { PointsStatsRow as n, AbacusGrpcApi as r, PointsLatestResponse as t };