import { zod } from "../zod"; export declare namespace Locations { const type: zod.ZodObject<{ cfConnectionIp: zod.ZodOptional; cfIpCountry: zod.ZodOptional; datacenter: zod.ZodOptional; country: zod.ZodOptional; }, zod.z.core.$strip>; function getLocations(request: any): Locations | undefined; } export type Locations = zod.infer;