import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnalyticsOS = { /** * The name of the OS */ os: string; /** * The number of clicks from this OS */ clicks: number; /** * The number of leads from this OS */ leads: number; /** * The number of sales from this OS */ sales: number; /** * The total amount of sales from this OS, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsOS$inboundSchema: z.ZodType; export declare function analyticsOSFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticsos.d.ts.map