import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SubScores, SubScores$Outbound } from "./subscores.js"; export type UserTrustScore = { fused?: number | undefined; reasons?: number | undefined; subScores?: SubScores | undefined; }; /** @internal */ export declare const UserTrustScore$inboundSchema: z.ZodType; /** @internal */ export type UserTrustScore$Outbound = { fused?: number | undefined; reasons?: number | undefined; subScores?: SubScores$Outbound | undefined; }; /** @internal */ export declare const UserTrustScore$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 UserTrustScore$ { /** @deprecated use `UserTrustScore$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserTrustScore$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserTrustScore$Outbound` instead. */ type Outbound = UserTrustScore$Outbound; } export declare function userTrustScoreToJSON(userTrustScore: UserTrustScore): string; export declare function userTrustScoreFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=usertrustscore.d.ts.map