import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestSubjectMobileAuthenticators, AuthStartRequestSubjectMobileAuthenticators$Outbound } from "./authstartrequestsubjectmobileauthenticators.js"; import { AuthStartRequestSubjectMobileClaim, AuthStartRequestSubjectMobileClaim$Outbound } from "./authstartrequestsubjectmobileclaim.js"; export type AuthStartRequestSubjectMobile = { authenticators?: AuthStartRequestSubjectMobileAuthenticators | undefined; claim?: AuthStartRequestSubjectMobileClaim | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobile$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectMobile$Outbound = { authenticators?: AuthStartRequestSubjectMobileAuthenticators$Outbound | undefined; claim?: AuthStartRequestSubjectMobileClaim$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobile$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 AuthStartRequestSubjectMobile$ { /** @deprecated use `AuthStartRequestSubjectMobile$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobile$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobile$Outbound` instead. */ type Outbound = AuthStartRequestSubjectMobile$Outbound; } export declare function authStartRequestSubjectMobileToJSON(authStartRequestSubjectMobile: AuthStartRequestSubjectMobile): string; export declare function authStartRequestSubjectMobileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectmobile.d.ts.map