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 AuthContinueResponseSubjectMobileResult = { error?: AuthContinueResponseError | undefined; /** * Success will be true if the bind was successful. */ success: boolean; }; /** @internal */ export declare const AuthContinueResponseSubjectMobileResult$inboundSchema: z.ZodType; /** @internal */ export type AuthContinueResponseSubjectMobileResult$Outbound = { error?: AuthContinueResponseError$Outbound | undefined; success: boolean; }; /** @internal */ export declare const AuthContinueResponseSubjectMobileResult$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 AuthContinueResponseSubjectMobileResult$ { /** @deprecated use `AuthContinueResponseSubjectMobileResult$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseSubjectMobileResult$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthContinueResponseSubjectMobileResult$Outbound` instead. */ type Outbound = AuthContinueResponseSubjectMobileResult$Outbound; } export declare function authContinueResponseSubjectMobileResultToJSON(authContinueResponseSubjectMobileResult: AuthContinueResponseSubjectMobileResult): string; export declare function authContinueResponseSubjectMobileResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authcontinueresponsesubjectmobileresult.d.ts.map