import './style.css';
import type { IControl, Map } from 'maplibre-gl';
type OpacityControlOptions = {
    baseLayers: Record<string, string>;
    overLayers: Record<string, string>;
    opacityControl: boolean;
};
declare class OpacityControl implements IControl {
    #private;
    constructor(options: Partial<OpacityControlOptions>);
    onAdd(map: Map): HTMLDivElement;
    onRemove(): void;
}
export default OpacityControl;
