import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; import { EnrichedIndustryCodes, EnrichedIndustryCodes$Outbound } from "./enrichedindustrycodes.js"; import { PhoneNumber, PhoneNumber$Outbound } from "./phonenumber.js"; export type EnrichedBusinessProfile = { address?: Address | undefined; email?: string | undefined; industryCodes?: EnrichedIndustryCodes | undefined; legalBusinessName?: string | undefined; phone?: PhoneNumber | undefined; website?: string | undefined; }; /** @internal */ export declare const EnrichedBusinessProfile$inboundSchema: z.ZodType; /** @internal */ export type EnrichedBusinessProfile$Outbound = { address?: Address$Outbound | undefined; email?: string | undefined; industryCodes?: EnrichedIndustryCodes$Outbound | undefined; legalBusinessName?: string | undefined; phone?: PhoneNumber$Outbound | undefined; website?: string | undefined; }; /** @internal */ export declare const EnrichedBusinessProfile$outboundSchema: z.ZodType; export declare function enrichedBusinessProfileToJSON(enrichedBusinessProfile: EnrichedBusinessProfile): string; export declare function enrichedBusinessProfileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=enrichedbusinessprofile.d.ts.map