import type { GeoPointContent } from "@prismicio/types-internal/lib/content"; type Coordinates = GeoPointContent["position"]; export declare function parseGoogleMapsUrl(url: string): Coordinates | undefined; export declare function coordinatesToString(coordinates?: Coordinates): string; export declare function parseString(str: string): Coordinates | undefined; export {};