import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges. */ export type LatLngCreate = { /** * The latitude in degrees. It must be in the range [-90.0, +90.0]. */ latitude?: number | undefined; /** * The longitude in degrees. It must be in the range [-180.0, +180.0]. */ longitude?: number | undefined; }; /** @internal */ export declare const LatLngCreate$inboundSchema: z.ZodType; /** @internal */ export type LatLngCreate$Outbound = { latitude?: number | undefined; longitude?: number | undefined; }; /** @internal */ export declare const LatLngCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LatLngCreate$ { /** @deprecated use `LatLngCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LatLngCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LatLngCreate$Outbound` instead. */ type Outbound = LatLngCreate$Outbound; } export declare function latLngCreateToJSON(latLngCreate: LatLngCreate): string; export declare function latLngCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=latlngcreate.d.ts.map