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