import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Combination of Item attribute key/value with it's count */ export type TraitEntry = { value: string; count: number; }; /** @internal */ export declare const TraitEntry$inboundSchema: z.ZodType; /** @internal */ export type TraitEntry$Outbound = { value: string; count: number; }; /** @internal */ export declare const TraitEntry$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 TraitEntry$ { /** @deprecated use `TraitEntry$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TraitEntry$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TraitEntry$Outbound` instead. */ type Outbound = TraitEntry$Outbound; } export declare function traitEntryToJSON(traitEntry: TraitEntry): string; export declare function traitEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=traitentry.d.ts.map