/// import type { GeoPointContent } from "@prismicio/types-internal/lib/content"; import type { GeoPoint } from "@prismicio/types-internal/lib/customtypes"; interface GeoPointFieldProps { field: GeoPoint; id: string; readOnly: boolean; content: GeoPointContent | undefined; onContentChange: (content?: GeoPointContent) => void; } export declare function GeoPointField(props: GeoPointFieldProps): JSX.Element; export {};