import { IGeoCoordinates } from ".";
export interface ICity {
    label: string;
    slug: string;
    coords: IGeoCoordinates;
    autocomplete_placeholder?: string;
}
