import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BusinessAddress, BusinessAddress$Outbound } from "./businessaddress.js"; import { RegistrationFiling, RegistrationFiling$Outbound } from "./registrationfiling.js"; import { RelatedPerson, RelatedPerson$Outbound } from "./relatedperson.js"; export type Business = { businessAddress?: BusinessAddress | undefined; businessName?: string | undefined; registrationFiling?: RegistrationFiling | undefined; relatedPersons?: Array | undefined; taxId?: string | undefined; tradeName?: string | undefined; }; /** @internal */ export declare const Business$inboundSchema: z.ZodType; /** @internal */ export type Business$Outbound = { businessAddress?: BusinessAddress$Outbound | undefined; businessName?: string | undefined; registrationFiling?: RegistrationFiling$Outbound | undefined; relatedPersons?: Array | undefined; taxId?: string | undefined; tradeName?: string | undefined; }; /** @internal */ export declare const Business$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 Business$ { /** @deprecated use `Business$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Business$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Business$Outbound` instead. */ type Outbound = Business$Outbound; } export declare function businessToJSON(business: Business): string; export declare function businessFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=business.d.ts.map