import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TaxIdKind } from "./taxidkind.js"; export type TaxId = { /** * The tax ID for the buyer. */ value: string; kind: TaxIdKind; }; /** @internal */ export declare const TaxId$inboundSchema: z.ZodType; /** @internal */ export type TaxId$Outbound = { value: string; kind: string; }; /** @internal */ export declare const TaxId$outboundSchema: z.ZodType; export declare function taxIdToJSON(taxId: TaxId): string; export declare function taxIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxid.d.ts.map