import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectMobileAuthenticatorUniversal = { /** * FinalTargetURL is the customer server URL that will be called back by Prove's Web page * * @remarks * after UPK registration/verification ceremony is done. */ finalTargetUrl: string; testMode?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticatorUniversal$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectMobileAuthenticatorUniversal$Outbound = { finalTargetUrl: string; testMode?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectMobileAuthenticatorUniversal$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 AuthStartRequestSubjectMobileAuthenticatorUniversal$ { /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorUniversal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorUniversal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectMobileAuthenticatorUniversal$Outbound` instead. */ type Outbound = AuthStartRequestSubjectMobileAuthenticatorUniversal$Outbound; } export declare function authStartRequestSubjectMobileAuthenticatorUniversalToJSON(authStartRequestSubjectMobileAuthenticatorUniversal: AuthStartRequestSubjectMobileAuthenticatorUniversal): string; export declare function authStartRequestSubjectMobileAuthenticatorUniversalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectmobileauthenticatoruniversal.d.ts.map