import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectMobileClaim = { /** * MobileNumber will be used when performing OTP fallback and will not use the optional value provided by the SDK. * * @remarks * Mobile number may be prefixed with a plus sign, but does not need to be for US. A plus sign is required for * international. */ mobileNumber?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileClaim$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectMobileClaim$Outbound = { mobileNumber?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileClaim$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 AuthStartRequestSubjectMobileClaim$ { /** @deprecated use `AuthStartRequestSubjectMobileClaim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileClaim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileClaim$Outbound` instead. */ type Outbound = AuthStartRequestSubjectMobileClaim$Outbound; } export declare function authStartRequestSubjectMobileClaimToJSON(authStartRequestSubjectMobileClaim: AuthStartRequestSubjectMobileClaim): string; export declare function authStartRequestSubjectMobileClaimFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectmobileclaim.d.ts.map