from typing import Any

from django.forms.widgets import Widget as Widget

logger: Any

class BaseGeometryWidget(Widget):
    geom_type: str = ...
    map_srid: int = ...
    map_width: int = ...
    map_height: int = ...
    display_raw: bool = ...
    supports_3d: bool = ...
    template_name: str = ...
    attrs: Any = ...
    def __init__(self, attrs: Any | None = ...) -> None: ...
    def serialize(self, value: Any) -> Any: ...
    def deserialize(self, value: Any) -> Any: ...
    def get_context(self, name: Any, value: Any, attrs: Any) -> Any: ...

class OpenLayersWidget(BaseGeometryWidget):
    template_name: str = ...
    map_srid: int = ...

    class Media:
        css: Any = ...
        js: Any = ...
    def serialize(self, value: Any) -> Any: ...
    def deserialize(self, value: Any) -> Any: ...

class OSMWidget(OpenLayersWidget):
    template_name: str = ...
    default_lon: int = ...
    default_lat: int = ...
    default_zoom: int = ...
    def __init__(self, attrs: Any | None = ...) -> None: ...
