import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthenticationResults = { /** * An indication of which mobile authentication method was used. */ mobile?: string | undefined; }; /** @internal */ export declare const AuthenticationResults$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationResults$Outbound = { mobile?: string | undefined; }; /** @internal */ export declare const AuthenticationResults$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 AuthenticationResults$ { /** @deprecated use `AuthenticationResults$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationResults$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationResults$Outbound` instead. */ type Outbound = AuthenticationResults$Outbound; } export declare function authenticationResultsToJSON(authenticationResults: AuthenticationResults): string; export declare function authenticationResultsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticationresults.d.ts.map