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