import L from 'leaflet'; import { type MyMap } from 'map-sdk-leaflet/es/sdk/ShipxyAPISDK'; interface AttributionElaneOptions extends L.Control.AttributionOptions { emptyString?: string; } declare class AttributionElane extends L.Control.Attribution { private _options; private _container; constructor(options?: AttributionElaneOptions); private _onLayerChange; onAdd(map: MyMap): HTMLElement; } declare const attributionElane: (options?: AttributionElaneOptions | undefined) => AttributionElane; export default attributionElane;