import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubScores = { bluetoothConnected?: number | undefined; bluetoothPaired?: number | undefined; bluetoothScanned?: number | undefined; distance?: number | undefined; inclusion?: number | undefined; wifiConnected?: number | undefined; wifiScanned?: number | undefined; }; /** @internal */ export declare const SubScores$inboundSchema: z.ZodType; /** @internal */ export type SubScores$Outbound = { bluetoothConnected?: number | undefined; bluetoothPaired?: number | undefined; bluetoothScanned?: number | undefined; distance?: number | undefined; inclusion?: number | undefined; wifiConnected?: number | undefined; wifiScanned?: number | undefined; }; /** @internal */ export declare const SubScores$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 SubScores$ { /** @deprecated use `SubScores$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubScores$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubScores$Outbound` instead. */ type Outbound = SubScores$Outbound; } export declare function subScoresToJSON(subScores: SubScores): string; export declare function subScoresFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscores.d.ts.map