import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthContinueRequestSubjectMobileClaim = { /** * MobileNumber to bind to the device. Mobile number may be prefixed with a plus sign, but does not need to be for * * @remarks * US. A plus sign is required for international. */ mobileNumber: string; }; /** @internal */ export declare const AuthContinueRequestSubjectMobileClaim$inboundSchema: z.ZodType; /** @internal */ export type AuthContinueRequestSubjectMobileClaim$Outbound = { mobileNumber: string; }; /** @internal */ export declare const AuthContinueRequestSubjectMobileClaim$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 AuthContinueRequestSubjectMobileClaim$ { /** @deprecated use `AuthContinueRequestSubjectMobileClaim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthContinueRequestSubjectMobileClaim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthContinueRequestSubjectMobileClaim$Outbound` instead. */ type Outbound = AuthContinueRequestSubjectMobileClaim$Outbound; } export declare function authContinueRequestSubjectMobileClaimToJSON(authContinueRequestSubjectMobileClaim: AuthContinueRequestSubjectMobileClaim): string; export declare function authContinueRequestSubjectMobileClaimFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authcontinuerequestsubjectmobileclaim.d.ts.map