import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreateBusinessProfile, CreateBusinessProfile$Outbound } from "./createbusinessprofile.js"; import { CreateIndividualProfile, CreateIndividualProfile$Outbound } from "./createindividualprofile.js"; export type CreateProfile = { individual?: CreateIndividualProfile | undefined; business?: CreateBusinessProfile | undefined; }; /** @internal */ export declare const CreateProfile$inboundSchema: z.ZodType; /** @internal */ export type CreateProfile$Outbound = { individual?: CreateIndividualProfile$Outbound | undefined; business?: CreateBusinessProfile$Outbound | undefined; }; /** @internal */ export declare const CreateProfile$outboundSchema: z.ZodType; export declare function createProfileToJSON(createProfile: CreateProfile): string; export declare function createProfileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createprofile.d.ts.map