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