import { default as PlaceSearch } from './components/PlaceSearch.vue';
export { PlaceSearch };
export { usePlaceSearch } from './composables/usePlaceSearch.js';
export type PlaceProperties = {
    name: string;
    objectType: number;
    pg?: string;
    kg_nr?: string;
};
export type PlaceItem = {
    properties: PlaceProperties;
    geometry: import('geojson').Polygon | import('geojson').Point;
    type?: string;
    score?: number;
    id: string;
};
