import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IndustryCodes = { naics?: string | undefined; sic?: string | undefined; mcc?: string | undefined; }; /** @internal */ export declare const IndustryCodes$inboundSchema: z.ZodType; /** @internal */ export type IndustryCodes$Outbound = { naics?: string | undefined; sic?: string | undefined; mcc?: string | undefined; }; /** @internal */ export declare const IndustryCodes$outboundSchema: z.ZodType; export declare function industryCodesToJSON(industryCodes: IndustryCodes): string; export declare function industryCodesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=industrycodes.d.ts.map