export default Toolbar;
/**
* The editor's toolbar.
* @class
* @alias ole.Toolbar
*/
declare class Toolbar extends Control {
/**
* Constructor.
* @param {ol.Map} map The map object.
* @param {ol.Collection.
} controls Controls
* @param {HTMLElement} [options.target] Specify a target if you want
* the control to be rendered outside of the map's viewport.
*/
constructor(map: ol.Map, controls: ol.Collection, target: any);
/**
* @private
* @type {ol.Collection.}
*/
private controls;
/**
* @private
* @type {ol.Map}
*/
private map;
/**
* Load the toolbar.
* @private
*/
private load;
/**
* Destroy the toolbar.
* @private
*/
private destroy;
}
import Control from 'ol/control/Control';