import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const AnalyticsRegionsCity: { readonly Wildcard: "*"; }; export type AnalyticsRegionsCity = ClosedEnum; export type AnalyticsRegions = { /** * The 2-letter ISO 3166-1 country code of the country. Learn more: https://d.to/geo */ country: string; /** * The 2-letter ISO 3166-2 region code of the region. */ region: string; city: AnalyticsRegionsCity; /** * The number of clicks from this region */ clicks: number; /** * The number of leads from this region */ leads: number; /** * The number of sales from this region */ sales: number; /** * The total amount of sales from this region, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsRegionsCity$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AnalyticsRegions$inboundSchema: z.ZodType; export declare function analyticsRegionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticsregions.d.ts.map