import { Events } from '../../types'; interface PolygonProps { polygonOptions: { path: any; [option: string]: any; }; events?: Events; } declare function Polygon(props: PolygonProps): null; export default Polygon;