import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectDeviceAuthenticatorPassive = { /** * AllowPasscodeFallback specifies whether passcode is allowed as a fallback protection for device in-app step-up keys. */ allowPasscodeFallback?: boolean | undefined; /** * UserVerificationLevel accepts 'required', 'preferred' or 'discouraged' as a value to specify biometric verification with FIDO. */ userVerificationLevel?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectDeviceAuthenticatorPassive$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectDeviceAuthenticatorPassive$Outbound = { allowPasscodeFallback?: boolean | undefined; userVerificationLevel?: string | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectDeviceAuthenticatorPassive$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 AuthStartRequestSubjectDeviceAuthenticatorPassive$ { /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticatorPassive$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticatorPassive$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticatorPassive$Outbound` instead. */ type Outbound = AuthStartRequestSubjectDeviceAuthenticatorPassive$Outbound; } export declare function authStartRequestSubjectDeviceAuthenticatorPassiveToJSON(authStartRequestSubjectDeviceAuthenticatorPassive: AuthStartRequestSubjectDeviceAuthenticatorPassive): string; export declare function authStartRequestSubjectDeviceAuthenticatorPassiveFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectdeviceauthenticatorpassive.d.ts.map