import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreateBusinessError, CreateBusinessError$Outbound } from "./createbusinesserror.js"; import { CreateIndividualError, CreateIndividualError$Outbound } from "./createindividualerror.js"; export type CreateProfileError = { individual?: CreateIndividualError | undefined; business?: CreateBusinessError | undefined; }; /** @internal */ export declare const CreateProfileError$inboundSchema: z.ZodType; /** @internal */ export type CreateProfileError$Outbound = { individual?: CreateIndividualError$Outbound | undefined; business?: CreateBusinessError$Outbound | undefined; }; /** @internal */ export declare const CreateProfileError$outboundSchema: z.ZodType; export declare function createProfileErrorToJSON(createProfileError: CreateProfileError): string; export declare function createProfileErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createprofileerror.d.ts.map