import type { LatLng } from '../types';
export interface PolygonProps {
    /**
     * 节点坐标
     */
    coordinates: LatLng[];
    /**
     * 边线宽度
     */
    strokeWidth?: number;
    /**
     * 边线颜色
     */
    strokeColor?: string;
    /**
     * 填充颜色
     */
    fillColor?: string;
    /**
     * 层级
     */
    zIndex?: number;
}
declare const _default: import("react-native").HostComponent<PolygonProps>;
export default _default;
