import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EnrichedBusinessProfile, EnrichedBusinessProfile$Outbound } from "./enrichedbusinessprofile.js"; export type EnrichedBusinessResponse = { business?: EnrichedBusinessProfile | undefined; }; /** @internal */ export declare const EnrichedBusinessResponse$inboundSchema: z.ZodType; /** @internal */ export type EnrichedBusinessResponse$Outbound = { business?: EnrichedBusinessProfile$Outbound | undefined; }; /** @internal */ export declare const EnrichedBusinessResponse$outboundSchema: z.ZodType; export declare function enrichedBusinessResponseToJSON(enrichedBusinessResponse: EnrichedBusinessResponse): string; export declare function enrichedBusinessResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=enrichedbusinessresponse.d.ts.map