import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UserRegistration = { firstName: string; lastName: string; companyName: string; emailAddress: string; }; /** @internal */ export declare const UserRegistration$inboundSchema: z.ZodType; /** @internal */ export type UserRegistration$Outbound = { first_name: string; last_name: string; company_name: string; email_address: string; }; /** @internal */ export declare const UserRegistration$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 UserRegistration$ { /** @deprecated use `UserRegistration$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserRegistration$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserRegistration$Outbound` instead. */ type Outbound = UserRegistration$Outbound; } export declare function userRegistrationToJSON(userRegistration: UserRegistration): string; export declare function userRegistrationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=userregistration.d.ts.map