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"; /** * The 2-letter ISO 3166-1 code representing the continent associated with the location of the user. */ export declare const Continent: { readonly Af: "AF"; readonly An: "AN"; readonly As: "AS"; readonly Eu: "EU"; readonly Na: "NA"; readonly Oc: "OC"; readonly Sa: "SA"; }; /** * The 2-letter ISO 3166-1 code representing the continent associated with the location of the user. */ export type Continent = ClosedEnum; export type AnalyticsContinents = { /** * The 2-letter ISO 3166-1 code representing the continent associated with the location of the user. */ continent: Continent; /** * The number of clicks from this continent */ clicks: number; /** * The number of leads from this continent */ leads: number; /** * The number of sales from this continent */ sales: number; /** * The total amount of sales from this continent, in cents */ saleAmount: number; }; /** @internal */ export declare const Continent$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AnalyticsContinents$inboundSchema: z.ZodType; export declare function analyticsContinentsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticscontinents.d.ts.map