import { CustomTypeModelFieldType } from "./types.cjs";

//#region src/types/model/geoPoint.d.ts
/**
 * A geopoint custom type field.
 *
 * More details: {@link https://prismic.io/docs/geopoint}
 */
interface CustomTypeModelGeoPointField {
  type: typeof CustomTypeModelFieldType.GeoPoint;
  config?: {
    label?: string | null;
  };
}
//#endregion
export { CustomTypeModelGeoPointField };
//# sourceMappingURL=geoPoint.d.cts.map