import * as z from "zod"; import { HedgewiseError } from "./hedgewiseerror.js"; export type GetUserRegistrationReponseErrorData = { success: true; data: string; }; export declare class GetUserRegistrationReponseError extends HedgewiseError { success: true; data: string; /** The original data that was passed to this error instance. */ data$: GetUserRegistrationReponseErrorData; constructor(err: GetUserRegistrationReponseErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetUserRegistrationReponseError$inboundSchema: z.ZodType; /** @internal */ export type GetUserRegistrationReponseError$Outbound = { success: true; data: string; }; /** @internal */ export declare const GetUserRegistrationReponseError$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 GetUserRegistrationReponseError$ { /** @deprecated use `GetUserRegistrationReponseError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetUserRegistrationReponseError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetUserRegistrationReponseError$Outbound` instead. */ type Outbound = GetUserRegistrationReponseError$Outbound; } //# sourceMappingURL=getuserregistrationreponseerror.d.ts.map