import type L from "leaflet"; import type { PropType } from "vue"; export declare const circleMarkerProps: { /** * Radius of the marker in pixels. */ readonly radius: { readonly type: NumberConstructor; }; readonly latLng: { readonly type: PropType; readonly required: true; readonly custom: true; }; readonly stroke: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly color: { readonly type: StringConstructor; }; readonly weight: { readonly type: NumberConstructor; }; readonly opacity: { readonly type: NumberConstructor; }; readonly lineCap: { readonly type: StringConstructor; }; readonly lineJoin: { readonly type: StringConstructor; }; readonly dashArray: { readonly type: StringConstructor; }; readonly dashOffset: { readonly type: StringConstructor; }; readonly fill: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly fillColor: { readonly type: StringConstructor; }; readonly fillOpacity: { readonly type: NumberConstructor; }; readonly fillRule: { readonly type: StringConstructor; }; readonly className: { readonly type: StringConstructor; }; readonly interactive: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly bubblingMouseEvents: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly pane: { readonly type: StringConstructor; }; readonly attribution: { readonly type: StringConstructor; }; readonly name: { readonly type: StringConstructor; readonly custom: true; }; readonly layerType: { readonly type: PropType; readonly custom: true; }; readonly visible: { readonly type: BooleanConstructor; readonly custom: true; readonly default: true; }; readonly options: { readonly type: ObjectConstructor; readonly default: () => {}; readonly custom: true; }; }; export type LCircleMarkerProps = typeof circleMarkerProps; export declare const setupCircleMarker: (props: any, leafletRef: any, context: any) => { options: L.CircleMarkerOptions; methods: { setRadius(radius: any): void; setLatLng(latLng: any): void; setStroke(stroke: any): void; setColor(color: any): void; setWeight(weight: any): void; setOpacity(opacity: any): void; setLineCap(lineCap: any): void; setLineJoin(lineJoin: any): void; setDashArray(dashArray: any): void; setDashOffset(dashOffset: any): void; setFill(fill: any): void; setFillColor(fillColor: any): void; setFillOpacity(fillOpacity: any): void; setFillRule(fillRule: any): void; setClassName(className: any): void; setAttribution(val: any): void; setName(): void; setLayerType(): void; setVisible(isVisible: any): void; bindPopup(leafletObject: any): void; bindTooltip(leafletObject: any): void; unbindTooltip(): void; unbindPopup(): void; updateVisibleProp(value: any): void; }; };