import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OlapCurrencyAmount, OlapCurrencyAmount$Outbound } from "./olapcurrencyamount.js"; export type OlapUserLeaderboardEntry = { /** * Identifier of user */ id: string; volumeUsd: OlapCurrencyAmount; volumeNative: OlapCurrencyAmount; /** * (non-unique) amount of traded items */ items: number; /** * Amount of transactions were made */ transactions: number; }; /** @internal */ export declare const OlapUserLeaderboardEntry$inboundSchema: z.ZodType; /** @internal */ export type OlapUserLeaderboardEntry$Outbound = { id: string; volumeUsd: OlapCurrencyAmount$Outbound; volumeNative: OlapCurrencyAmount$Outbound; items: number; transactions: number; }; /** @internal */ export declare const OlapUserLeaderboardEntry$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OlapUserLeaderboardEntry$ { /** @deprecated use `OlapUserLeaderboardEntry$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapUserLeaderboardEntry$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapUserLeaderboardEntry$Outbound` instead. */ type Outbound = OlapUserLeaderboardEntry$Outbound; } export declare function olapUserLeaderboardEntryToJSON(olapUserLeaderboardEntry: OlapUserLeaderboardEntry): string; export declare function olapUserLeaderboardEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapuserleaderboardentry.d.ts.map