import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnalyticsRefererUrls = { /** * The full URL of the referer. If unknown, this will be `(direct)` */ refererUrl: string; /** * The number of clicks from this referer to this URL */ clicks: number; /** * The number of leads from this referer to this URL */ leads: number; /** * The number of sales from this referer to this URL */ sales: number; /** * The total amount of sales from this referer to this URL, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsRefererUrls$inboundSchema: z.ZodType; export declare function analyticsRefererUrlsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticsrefererurls.d.ts.map