import { LatLng } from './MapView'; import './types'; export interface MapPolygonProps { coordinates: LatLng[]; strokeColor?: string; strokeWidth?: number; fillColor?: string; tappable?: boolean; onPress?: (event?: { stopPropagation: () => void; nativeEvent: google.maps.PolyMouseEvent; }) => void; } export declare const Polygon: (props: MapPolygonProps) => null; //# sourceMappingURL=Polygon.d.ts.map