import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ComparisonFilterType: { readonly Eq: "eq"; readonly Ne: "ne"; readonly Gt: "gt"; readonly Gte: "gte"; readonly Lt: "lt"; readonly Lte: "lte"; }; export type ComparisonFilterType = ClosedEnum; export type Value = string | number | boolean; export type ComparisonFilter = { type: ComparisonFilterType; key: string; value: string | number | boolean; }; /** @internal */ export declare const ComparisonFilterType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComparisonFilterType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Value$inboundSchema: z.ZodType; /** @internal */ export type Value$Outbound = string | number | boolean; /** @internal */ export declare const Value$outboundSchema: z.ZodType; export declare function valueToJSON(value: Value): string; export declare function valueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ComparisonFilter$inboundSchema: z.ZodType; /** @internal */ export type ComparisonFilter$Outbound = { type: string; key: string; value: string | number | boolean; }; /** @internal */ export declare const ComparisonFilter$outboundSchema: z.ZodType; export declare function comparisonFilterToJSON(comparisonFilter: ComparisonFilter): string; export declare function comparisonFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=comparisonfilter.d.ts.map