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 Region: { readonly Wildcard: "*"; }; export type Region = ClosedEnum; export declare const City: { readonly Wildcard: "*"; }; export type City = ClosedEnum; export type AnalyticsCountries = { /** * The 2-letter ISO 3166-1 country code of the country. Learn more: https://d.to/geo */ country: string; region: Region; city: City; /** * The number of clicks from this country */ clicks: number; /** * The number of leads from this country */ leads: number; /** * The number of sales from this country */ sales: number; /** * The total amount of sales from this country, in cents */ saleAmount: number; }; /** @internal */ export declare const Region$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const City$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AnalyticsCountries$inboundSchema: z.ZodType; export declare function analyticsCountriesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticscountries.d.ts.map