import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestInstantAuthConsent, AuthStartRequestInstantAuthConsent$Outbound } from "./authstartrequestinstantauthconsent.js"; export type AuthStartRequestSubjectMobileAuthenticatorInstant = { consent?: AuthStartRequestInstantAuthConsent | undefined; testMode?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticatorInstant$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectMobileAuthenticatorInstant$Outbound = { consent?: AuthStartRequestInstantAuthConsent$Outbound | undefined; testMode?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticatorInstant$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 AuthStartRequestSubjectMobileAuthenticatorInstant$ { /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorInstant$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorInstant$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorInstant$Outbound` instead. */ type Outbound = AuthStartRequestSubjectMobileAuthenticatorInstant$Outbound; } export declare function authStartRequestSubjectMobileAuthenticatorInstantToJSON(authStartRequestSubjectMobileAuthenticatorInstant: AuthStartRequestSubjectMobileAuthenticatorInstant): string; export declare function authStartRequestSubjectMobileAuthenticatorInstantFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectmobileauthenticatorinstant.d.ts.map