import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectCardAuthenticatorAirKeyClaim = { /** * Optional comma-separated list of PUIDs associated with the cardholder. */ puids?: Array | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$Outbound = { puids?: Array | undefined; }; /** @internal */ export declare const AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$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 AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$ { /** @deprecated use `AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$Outbound` instead. */ type Outbound = AuthStartRequestSubjectCardAuthenticatorAirKeyClaim$Outbound; } export declare function authStartRequestSubjectCardAuthenticatorAirKeyClaimToJSON(authStartRequestSubjectCardAuthenticatorAirKeyClaim: AuthStartRequestSubjectCardAuthenticatorAirKeyClaim): string; export declare function authStartRequestSubjectCardAuthenticatorAirKeyClaimFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectcardauthenticatorairkeyclaim.d.ts.map