import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UserLocation = { type?: "approximate" | undefined; city?: string | undefined; country?: string | undefined; region?: string | undefined; timezone?: string | undefined; }; /** @internal */ export declare const UserLocation$inboundSchema: z.ZodType; /** @internal */ export type UserLocation$Outbound = { type: "approximate"; city?: string | undefined; country?: string | undefined; region?: string | undefined; timezone?: string | undefined; }; /** @internal */ export declare const UserLocation$outboundSchema: z.ZodType; export declare function userLocationToJSON(userLocation: UserLocation): string; export declare function userLocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=userlocation.d.ts.map