import * as z from "zod/v3"; export type GeocodingUKFindGlobals = { source?: string | undefined; }; export type GeocodingUKFindRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The location to geocode. This can be a full or partial postcode, a place name or street comma town. */ location: string; }; /** @internal */ export type GeocodingUKFindRequest$Outbound = { Key?: string | undefined; Location: string; }; /** @internal */ export declare const GeocodingUKFindRequest$outboundSchema: z.ZodType; export declare function geocodingUKFindRequestToJSON(geocodingUKFindRequest: GeocodingUKFindRequest): string; //# sourceMappingURL=geocodingukfind.d.ts.map