import { App } from 'vue';
import { default as OlFeature } from './OlFeature';
import { default as OlGeoLocation } from './OlGeoLocation';
import { default as OlMap } from './OlMap';
import { default as OlOverlay } from './OlOverlay';
import { default as OlProjectionRegister } from './OlProjectionRegister';
import { default as OlView } from './OlView';
import { Vue3OpenlayersGlobalOptions } from '../../types';
declare function install(app: App, options?: Vue3OpenlayersGlobalOptions): void;
declare module "@vue/runtime-core" {
    function inject(key: "ol-options"): Vue3OpenlayersGlobalOptions;
}
export default install;
export { install, OlFeature, OlGeoLocation, OlMap, OlOverlay, OlProjectionRegister, OlView, };
