import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Item trait property */ export type TraitProperty = { key: string; value: string; }; /** @internal */ export declare const TraitProperty$inboundSchema: z.ZodType; /** @internal */ export type TraitProperty$Outbound = { key: string; value: string; }; /** @internal */ export declare const TraitProperty$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 TraitProperty$ { /** @deprecated use `TraitProperty$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TraitProperty$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TraitProperty$Outbound` instead. */ type Outbound = TraitProperty$Outbound; } export declare function traitPropertyToJSON(traitProperty: TraitProperty): string; export declare function traitPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=traitproperty.d.ts.map