import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Trait property parameters with additional features */ export type ExtendedTraitProperty = { key: string; value: string; /** * Rarity percent */ rarity: number; }; /** @internal */ export declare const ExtendedTraitProperty$inboundSchema: z.ZodType; /** @internal */ export type ExtendedTraitProperty$Outbound = { key: string; value: string; rarity: number; }; /** @internal */ export declare const ExtendedTraitProperty$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 ExtendedTraitProperty$ { /** @deprecated use `ExtendedTraitProperty$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExtendedTraitProperty$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExtendedTraitProperty$Outbound` instead. */ type Outbound = ExtendedTraitProperty$Outbound; } export declare function extendedTraitPropertyToJSON(extendedTraitProperty: ExtendedTraitProperty): string; export declare function extendedTraitPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=extendedtraitproperty.d.ts.map