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