import React from 'react';
import { OverlayProps } from '@uiw/react-baidu-map-map';
export * from './usePolygon';
export interface PolygonProps extends BMap.PolygonOptions, BMap.PolygonEvents, OverlayProps {
    /**
     * 设置折线的点数组
     */
    path: BMap.Point[];
}
declare const _default: React.ForwardRefExoticComponent<PolygonProps & React.RefAttributes<PolygonProps & {
    polygon?: BMap.Polygon;
}>>;
export default _default;
