import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectUserAuthenticatorPassive = { /** * UserVerificationLevel accepts 'required', 'preferred' or 'discouraged' as a value to specify biometric verification with FIDO. */ userVerificationLevel?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectUserAuthenticatorPassive$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectUserAuthenticatorPassive$Outbound = { userVerificationLevel?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectUserAuthenticatorPassive$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 AuthStartRequestSubjectUserAuthenticatorPassive$ { /** @deprecated use `AuthStartRequestSubjectUserAuthenticatorPassive$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectUserAuthenticatorPassive$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectUserAuthenticatorPassive$Outbound` instead. */ type Outbound = AuthStartRequestSubjectUserAuthenticatorPassive$Outbound; } export declare function authStartRequestSubjectUserAuthenticatorPassiveToJSON(authStartRequestSubjectUserAuthenticatorPassive: AuthStartRequestSubjectUserAuthenticatorPassive): string; export declare function authStartRequestSubjectUserAuthenticatorPassiveFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectuserauthenticatorpassive.d.ts.map