import Map from '../map/Map'; import Control, { ControlOptionsType } from './Control'; declare class Scale extends Control { /** * method to build DOM of the control * @param {Map} map map to build on * @return {HTMLDOMElement} */ buildOn(map: Map): HTMLDivElement; onRemove(): void; } export default Scale; export type ScaleOptionsTypeSpec = { maxWidth?: number; metric?: boolean; imperial?: boolean; containerClass?: string; }; export type ScaleOptionsType = ControlOptionsType & ScaleOptionsTypeSpec; //# sourceMappingURL=Control.Scale.d.ts.map