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 OlapCollectionStatisticsResponse = { /** * Highest worth transaction in collection */ highestSale: Array; /** * Minimal price of nft in this collection available on rarible */ floorPrice: Array; /** * Market cap of collection (floor price * total item supply) */ marketCap: Array; /** * Total worth of all transactions were made with nfts in this collection */ volume: Array; /** * Amount of currently listed items */ listed: number; /** * Total item supply of all nfts in the collection */ items: number; /** * Current amount of unique owners who hold nfts of this collection */ owners: number; }; /** @internal */ export declare const OlapCollectionStatisticsResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapCollectionStatisticsResponse$Outbound = { highestSale: Array; floorPrice: Array; marketCap: Array; volume: Array; listed: number; items: number; owners: number; }; /** @internal */ export declare const OlapCollectionStatisticsResponse$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 OlapCollectionStatisticsResponse$ { /** @deprecated use `OlapCollectionStatisticsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapCollectionStatisticsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapCollectionStatisticsResponse$Outbound` instead. */ type Outbound = OlapCollectionStatisticsResponse$Outbound; } export declare function olapCollectionStatisticsResponseToJSON(olapCollectionStatisticsResponse: OlapCollectionStatisticsResponse): string; export declare function olapCollectionStatisticsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapcollectionstatisticsresponse.d.ts.map