import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OlapPriceWithUsd, OlapPriceWithUsd$Outbound } from "./olappricewithusd.js"; export type OlapGlobalCollectionStatisticsResponse = { /** * Collection id */ id?: string | undefined; listed: number; items: number; owners: number; floor?: OlapPriceWithUsd | undefined; volume: OlapPriceWithUsd; }; /** @internal */ export declare const OlapGlobalCollectionStatisticsResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapGlobalCollectionStatisticsResponse$Outbound = { id?: string | undefined; listed: number; items: number; owners: number; floor?: OlapPriceWithUsd$Outbound | undefined; volume: OlapPriceWithUsd$Outbound; }; /** @internal */ export declare const OlapGlobalCollectionStatisticsResponse$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 OlapGlobalCollectionStatisticsResponse$ { /** @deprecated use `OlapGlobalCollectionStatisticsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapGlobalCollectionStatisticsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapGlobalCollectionStatisticsResponse$Outbound` instead. */ type Outbound = OlapGlobalCollectionStatisticsResponse$Outbound; } export declare function olapGlobalCollectionStatisticsResponseToJSON(olapGlobalCollectionStatisticsResponse: OlapGlobalCollectionStatisticsResponse): string; export declare function olapGlobalCollectionStatisticsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapglobalcollectionstatisticsresponse.d.ts.map