import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthContinueResponseError, AuthContinueResponseError$Outbound } from "./authcontinueresponseerror.js"; export type AuthContinueResponseSubjectCardResult = { error?: AuthContinueResponseError | undefined; success?: boolean | undefined; }; /** @internal */ export declare const AuthContinueResponseSubjectCardResult$inboundSchema: z.ZodType; /** @internal */ export type AuthContinueResponseSubjectCardResult$Outbound = { error?: AuthContinueResponseError$Outbound | undefined; success?: boolean | undefined; }; /** @internal */ export declare const AuthContinueResponseSubjectCardResult$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 AuthContinueResponseSubjectCardResult$ { /** @deprecated use `AuthContinueResponseSubjectCardResult$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseSubjectCardResult$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseSubjectCardResult$Outbound` instead. */ type Outbound = AuthContinueResponseSubjectCardResult$Outbound; } export declare function authContinueResponseSubjectCardResultToJSON(authContinueResponseSubjectCardResult: AuthContinueResponseSubjectCardResult): string; export declare function authContinueResponseSubjectCardResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authcontinueresponsesubjectcardresult.d.ts.map