import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PartnerAnalyticsCount = { /** * 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; earnings: number; }; /** @internal */ export declare const PartnerAnalyticsCount$inboundSchema: z.ZodType; export declare function partnerAnalyticsCountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partneranalyticscount.d.ts.map