import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ErrorT, ErrorT$Outbound } from "./error.js"; import { FieldError, FieldError$Outbound } from "./fielderror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; /** * An error has occurred, and further details are contained in the response */ export type AccountGetResponseBody = ErrorT | FieldError; /** @internal */ export declare const AccountGetResponseBody$inboundSchema: z.ZodType; /** @internal */ export type AccountGetResponseBody$Outbound = ErrorT$Outbound | FieldError$Outbound; /** @internal */ export declare const AccountGetResponseBody$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 AccountGetResponseBody$ { /** @deprecated use `AccountGetResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountGetResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountGetResponseBody$Outbound` instead. */ type Outbound = AccountGetResponseBody$Outbound; } export declare function accountGetResponseBodyToJSON(accountGetResponseBody: AccountGetResponseBody): string; export declare function accountGetResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountget.d.ts.map