import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FilterOperator } from "./filteroperator.js"; export type Value = string | number | boolean; export type FilterClause = { property: string; operator: FilterOperator; value: string | number | boolean; }; /** @internal */ export declare const Value$inboundSchema: z.ZodMiniType; /** @internal */ export type Value$Outbound = string | number | boolean; /** @internal */ export declare const Value$outboundSchema: z.ZodMiniType; export declare function valueToJSON(value: Value): string; export declare function valueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FilterClause$inboundSchema: z.ZodMiniType; /** @internal */ export type FilterClause$Outbound = { property: string; operator: string; value: string | number | boolean; }; /** @internal */ export declare const FilterClause$outboundSchema: z.ZodMiniType; export declare function filterClauseToJSON(filterClause: FilterClause): string; export declare function filterClauseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filterclause.d.ts.map