import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestSubjectCardAuthenticatorAirKey, AuthStartRequestSubjectCardAuthenticatorAirKey$Outbound } from "./authstartrequestsubjectcardauthenticatorairkey.js"; export type AuthStartRequestSubjectCardAuthenticators = { airKey?: AuthStartRequestSubjectCardAuthenticatorAirKey | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectCardAuthenticators$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectCardAuthenticators$Outbound = { airKey?: AuthStartRequestSubjectCardAuthenticatorAirKey$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectCardAuthenticators$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 AuthStartRequestSubjectCardAuthenticators$ { /** @deprecated use `AuthStartRequestSubjectCardAuthenticators$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectCardAuthenticators$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectCardAuthenticators$Outbound` instead. */ type Outbound = AuthStartRequestSubjectCardAuthenticators$Outbound; } export declare function authStartRequestSubjectCardAuthenticatorsToJSON(authStartRequestSubjectCardAuthenticators: AuthStartRequestSubjectCardAuthenticators): string; export declare function authStartRequestSubjectCardAuthenticatorsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectcardauthenticators.d.ts.map