import { GeoPoint } from "@firebase/firestore-types";

export interface SlsPlace {
  placeId?: string
  coordinates?: GeoPoint;
  label: string;
  formattedAddress: string;
}