import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Categorizes the type of product or service for tax purposes. This helps determine the applicable tax rules based on the nature of the item or service. */ export declare const TaxCategory: { readonly Saas: "saas"; readonly DigitalGoodsService: "digital-goods-service"; readonly Ebooks: "ebooks"; }; /** * Categorizes the type of product or service for tax purposes. This helps determine the applicable tax rules based on the nature of the item or service. */ export type TaxCategory = ClosedEnum; /** @internal */ export declare const TaxCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TaxCategory$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=taxcategory.d.ts.map