import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const Field: { readonly Name: "NAME"; readonly Description: "DESCRIPTION"; readonly TraitValue: "TRAIT_VALUE"; }; export type Field = ClosedEnum; export type ItemSearchFullText = { text: string; fields?: Array | undefined; }; /** @internal */ export declare const Field$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Field$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Field$ { /** @deprecated use `Field$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Name: "NAME"; readonly Description: "DESCRIPTION"; readonly TraitValue: "TRAIT_VALUE"; }>; /** @deprecated use `Field$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Name: "NAME"; readonly Description: "DESCRIPTION"; readonly TraitValue: "TRAIT_VALUE"; }>; } /** @internal */ export declare const ItemSearchFullText$inboundSchema: z.ZodType; /** @internal */ export type ItemSearchFullText$Outbound = { text: string; fields?: Array | undefined; }; /** @internal */ export declare const ItemSearchFullText$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 ItemSearchFullText$ { /** @deprecated use `ItemSearchFullText$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ItemSearchFullText$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ItemSearchFullText$Outbound` instead. */ type Outbound = ItemSearchFullText$Outbound; } export declare function itemSearchFullTextToJSON(itemSearchFullText: ItemSearchFullText): string; export declare function itemSearchFullTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemsearchfulltext.d.ts.map