import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Range, Range$Outbound } from "./range.js"; /** * Trait value range */ export type TraitRange = { key: string; valueRange: Range; }; /** @internal */ export declare const TraitRange$inboundSchema: z.ZodType; /** @internal */ export type TraitRange$Outbound = { key: string; valueRange: Range$Outbound; }; /** @internal */ export declare const TraitRange$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 TraitRange$ { /** @deprecated use `TraitRange$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TraitRange$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TraitRange$Outbound` instead. */ type Outbound = TraitRange$Outbound; } export declare function traitRangeToJSON(traitRange: TraitRange): string; export declare function traitRangeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=traitrange.d.ts.map