import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { TraitProperty, TraitProperty$Outbound } from "./traitproperty.js"; /** * Request rarity of the properties in the collection */ export type TraitsRarityRequest = { collectionId: string; properties: Array; }; /** @internal */ export declare const TraitsRarityRequest$inboundSchema: z.ZodType; /** @internal */ export type TraitsRarityRequest$Outbound = { collectionId: string; properties: Array; }; /** @internal */ export declare const TraitsRarityRequest$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 TraitsRarityRequest$ { /** @deprecated use `TraitsRarityRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TraitsRarityRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TraitsRarityRequest$Outbound` instead. */ type Outbound = TraitsRarityRequest$Outbound; } export declare function traitsRarityRequestToJSON(traitsRarityRequest: TraitsRarityRequest): string; export declare function traitsRarityRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=traitsrarityrequest.d.ts.map