import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnalyticsTopUrls = { /** * The full destination URL (including query parameters) */ url: string; /** * The number of clicks from this URL */ clicks: number; /** * The number of leads from this URL */ leads: number; /** * The number of sales from this URL */ sales: number; /** * The total amount of sales from this URL, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsTopUrls$inboundSchema: z.ZodType; export declare function analyticsTopUrlsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticstopurls.d.ts.map