import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; export declare const Type: { readonly Tangible: "TANGIBLE"; readonly NonTangible: "NON_TANGIBLE"; }; export type Type = OpenEnum; export type ForterAntiFraudOptionsCartItemBasicItemData = { /** * Indicates whether the item is a physical good or a service/digital item. */ type?: Type | null | undefined; }; /** @internal */ export declare const Type$outboundSchema: z.ZodType; /** @internal */ export type ForterAntiFraudOptionsCartItemBasicItemData$Outbound = { type?: string | null | undefined; }; /** @internal */ export declare const ForterAntiFraudOptionsCartItemBasicItemData$outboundSchema: z.ZodType; export declare function forterAntiFraudOptionsCartItemBasicItemDataToJSON(forterAntiFraudOptionsCartItemBasicItemData: ForterAntiFraudOptionsCartItemBasicItemData): string; //# sourceMappingURL=forterantifraudoptionscartitembasicitemdata.d.ts.map