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 TestingAccountCreateResponseBody = ErrorT | FieldError; /** @internal */ export declare const TestingAccountCreateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type TestingAccountCreateResponseBody$Outbound = ErrorT$Outbound | FieldError$Outbound; /** @internal */ export declare const TestingAccountCreateResponseBody$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 TestingAccountCreateResponseBody$ { /** @deprecated use `TestingAccountCreateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestingAccountCreateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestingAccountCreateResponseBody$Outbound` instead. */ type Outbound = TestingAccountCreateResponseBody$Outbound; } export declare function testingAccountCreateResponseBodyToJSON(testingAccountCreateResponseBody: TestingAccountCreateResponseBody): string; export declare function testingAccountCreateResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=testingaccountcreate.d.ts.map