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