import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BusinessAddress = { address?: string | undefined; city?: string | undefined; extendedAddress?: string | undefined; region?: string | undefined; zipCode?: string | undefined; }; /** @internal */ export declare const BusinessAddress$inboundSchema: z.ZodType; /** @internal */ export type BusinessAddress$Outbound = { address?: string | undefined; city?: string | undefined; extendedAddress?: string | undefined; region?: string | undefined; zipCode?: string | undefined; }; /** @internal */ export declare const BusinessAddress$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace BusinessAddress$ { /** @deprecated use `BusinessAddress$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BusinessAddress$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BusinessAddress$Outbound` instead. */ type Outbound = BusinessAddress$Outbound; } export declare function businessAddressToJSON(businessAddress: BusinessAddress): string; export declare function businessAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=businessaddress.d.ts.map