import { z } from "zod/mini"; //#region src/content/geopoint.d.ts declare const GeoPointContentSchema: z.ZodMiniObject<{ position: z.ZodMiniObject<{ lat: z.ZodMiniNumber; lng: z.ZodMiniNumber; }, z.core.$strip>; __TYPE__: z.ZodMiniLiteral<"GeoPointContent">; }, z.core.$strip>; type GeoPointContent = z.infer; //#endregion export { GeoPointContent }; //# sourceMappingURL=geopoint.d.ts.map