import { PureComponent } from 'react'; import { PresentationAttributes, Coordinate } from '../util/types'; interface PolygonProps { className?: string; points?: Array; } declare type Props = Omit, 'points'> & PolygonProps; declare class Polygon extends PureComponent { render(): JSX.Element; } export default Polygon;