1 | import { type PathProps } from '@react-leaflet/core';
|
2 | import { type LatLngExpression, Polygon as LeafletPolygon, type PolylineOptions } from 'leaflet';
|
3 | import type { ReactNode } from 'react';
|
4 | export interface PolygonProps extends PolylineOptions, PathProps {
|
5 | children?: ReactNode;
|
6 | positions: LatLngExpression[] | LatLngExpression[][] | LatLngExpression[][][];
|
7 | }
|
8 | export declare const Polygon: import("react").ForwardRefExoticComponent<PolygonProps & import("react").RefAttributes<LeafletPolygon<any>>>;
|