import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnalyticsCities = { /** * The 2-letter ISO 3166-1 country code of the country where this city is located. Learn more: https://d.to/geo */ country: string; /** * The 2-letter ISO 3166-2 region code representing the region associated with the location of the user. */ region: string; /** * The name of the city */ city: string; /** * The number of clicks from this city */ clicks: number; /** * The number of leads from this city */ leads: number; /** * The number of sales from this city */ sales: number; /** * The total amount of sales from this city, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsCities$inboundSchema: z.ZodType; export declare function analyticsCitiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticscities.d.ts.map