import { IControl, Map } from 'maplibre-gl'; type LogoPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-center' | 'bottom-center'; interface MaptoolkitLogoOptions { position?: LogoPosition; } declare class MaptoolkitLogoControl implements IControl { private readonly position; private container; private dummy; private readonly stop; constructor(options?: MaptoolkitLogoOptions); onAdd(map: Map): HTMLElement; onRemove(): void; getDefaultPosition(): 'bottom-left'; } export { type LogoPosition, MaptoolkitLogoControl, type MaptoolkitLogoOptions };