import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestSubjectDeviceAuthenticatorPassive, AuthStartRequestSubjectDeviceAuthenticatorPassive$Outbound } from "./authstartrequestsubjectdeviceauthenticatorpassive.js"; export type AuthStartRequestSubjectDeviceAuthenticators = { passive?: AuthStartRequestSubjectDeviceAuthenticatorPassive | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectDeviceAuthenticators$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectDeviceAuthenticators$Outbound = { passive?: AuthStartRequestSubjectDeviceAuthenticatorPassive$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectDeviceAuthenticators$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 AuthStartRequestSubjectDeviceAuthenticators$ { /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticators$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticators$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectDeviceAuthenticators$Outbound` instead. */ type Outbound = AuthStartRequestSubjectDeviceAuthenticators$Outbound; } export declare function authStartRequestSubjectDeviceAuthenticatorsToJSON(authStartRequestSubjectDeviceAuthenticators: AuthStartRequestSubjectDeviceAuthenticators): string; export declare function authStartRequestSubjectDeviceAuthenticatorsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectdeviceauthenticators.d.ts.map