import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestSubjectMobileAuthenticatorInstant, AuthStartRequestSubjectMobileAuthenticatorInstant$Outbound } from "./authstartrequestsubjectmobileauthenticatorinstant.js"; import { AuthStartRequestSubjectMobileAuthenticatorInstantLink, AuthStartRequestSubjectMobileAuthenticatorInstantLink$Outbound } from "./authstartrequestsubjectmobileauthenticatorinstantlink.js"; import { AuthStartRequestSubjectMobileAuthenticatorOTP, AuthStartRequestSubjectMobileAuthenticatorOTP$Outbound } from "./authstartrequestsubjectmobileauthenticatorotp.js"; import { AuthStartRequestSubjectMobileAuthenticatorPassive, AuthStartRequestSubjectMobileAuthenticatorPassive$Outbound } from "./authstartrequestsubjectmobileauthenticatorpassive.js"; import { AuthStartRequestSubjectMobileAuthenticatorUniversal, AuthStartRequestSubjectMobileAuthenticatorUniversal$Outbound } from "./authstartrequestsubjectmobileauthenticatoruniversal.js"; export type AuthStartRequestSubjectMobileAuthenticators = { instant?: AuthStartRequestSubjectMobileAuthenticatorInstant | undefined; instantlink?: AuthStartRequestSubjectMobileAuthenticatorInstantLink | undefined; otp?: AuthStartRequestSubjectMobileAuthenticatorOTP | undefined; passive?: AuthStartRequestSubjectMobileAuthenticatorPassive | undefined; universal?: AuthStartRequestSubjectMobileAuthenticatorUniversal | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticators$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectMobileAuthenticators$Outbound = { instant?: AuthStartRequestSubjectMobileAuthenticatorInstant$Outbound | undefined; instantlink?: AuthStartRequestSubjectMobileAuthenticatorInstantLink$Outbound | undefined; otp?: AuthStartRequestSubjectMobileAuthenticatorOTP$Outbound | undefined; passive?: AuthStartRequestSubjectMobileAuthenticatorPassive$Outbound | undefined; universal?: AuthStartRequestSubjectMobileAuthenticatorUniversal$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticators$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 AuthStartRequestSubjectMobileAuthenticators$ { /** @deprecated use `AuthStartRequestSubjectMobileAuthenticators$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticators$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticators$Outbound` instead. */ type Outbound = AuthStartRequestSubjectMobileAuthenticators$Outbound; } export declare function authStartRequestSubjectMobileAuthenticatorsToJSON(authStartRequestSubjectMobileAuthenticators: AuthStartRequestSubjectMobileAuthenticators): string; export declare function authStartRequestSubjectMobileAuthenticatorsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectmobileauthenticators.d.ts.map