import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InvalidOperatorValueError = { /** * The operator key that has an invalid value. */ key?: string | undefined; /** * The invalid operator value. */ value?: string | undefined; }; /** @internal */ export declare const InvalidOperatorValueError$inboundSchema: z.ZodType; export declare function invalidOperatorValueErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=invalidoperatorvalueerror.d.ts.map