import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { LocationServicesDistanceFinderNearbyExternalResponsePointData } from "./locationservicesdistancefindernearbyexternalresponsepointdata.js"; export type LocationServicesDistanceFinderNearbyExternalResponseDestinationLocation = { destinationLocation?: LocationServicesDistanceFinderNearbyExternalResponsePointData | undefined; /** * The distance by road in kilometres returned as a string. */ distance?: string | undefined; /** * The distance by road in miles returned as a string. */ distanceMiles?: string | undefined; /** * The distance by road in metres returned as an integer. */ distanceMeters?: number | null | undefined; /** * The travel time displayed as seconds, minutes or hours. */ time?: string | undefined; /** * The travel time displayed in seconds as an integer. */ timeSeconds?: number | null | undefined; }; /** @internal */ export declare const LocationServicesDistanceFinderNearbyExternalResponseDestinationLocation$inboundSchema: z.ZodType; export declare function locationServicesDistanceFinderNearbyExternalResponseDestinationLocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=locationservicesdistancefindernearbyexternalresponsedestinationlocation.d.ts.map