import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Fingerprint = {}; export type AuthFinishResponseRawSignals = { /** * Fingerprint includes raw device signals from fingerprint */ fingerprint?: { [k: string]: Fingerprint; } | undefined; }; /** @internal */ export declare const Fingerprint$inboundSchema: z.ZodType; /** @internal */ export type Fingerprint$Outbound = {}; /** @internal */ export declare const Fingerprint$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 Fingerprint$ { /** @deprecated use `Fingerprint$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Fingerprint$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Fingerprint$Outbound` instead. */ type Outbound = Fingerprint$Outbound; } export declare function fingerprintToJSON(fingerprint: Fingerprint): string; export declare function fingerprintFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AuthFinishResponseRawSignals$inboundSchema: z.ZodType; /** @internal */ export type AuthFinishResponseRawSignals$Outbound = { fingerprint?: { [k: string]: Fingerprint$Outbound; } | undefined; }; /** @internal */ export declare const AuthFinishResponseRawSignals$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 AuthFinishResponseRawSignals$ { /** @deprecated use `AuthFinishResponseRawSignals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseRawSignals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseRawSignals$Outbound` instead. */ type Outbound = AuthFinishResponseRawSignals$Outbound; } export declare function authFinishResponseRawSignalsToJSON(authFinishResponseRawSignals: AuthFinishResponseRawSignals): string; export declare function authFinishResponseRawSignalsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authfinishresponserawsignals.d.ts.map