1 | import { type PathProps } from '@react-leaflet/core';
|
2 | import { type LatLngBoundsExpression, Rectangle as LeafletRectangle, type PathOptions } from 'leaflet';
|
3 | import type { ReactNode } from 'react';
|
4 | export interface RectangleProps extends PathOptions, PathProps {
|
5 | bounds: LatLngBoundsExpression;
|
6 | children?: ReactNode;
|
7 | }
|
8 | export declare const Rectangle: import("react").ForwardRefExoticComponent<RectangleProps & import("react").RefAttributes<LeafletRectangle<any>>>;
|