import { Point, PolygonOptions } from '.';
export interface PolygonElementProps {
    points: Point[];
    options?: PolygonOptions;
    editing: boolean;
    onClose?(index: number): void;
}
export interface State {
}
export default function PolygonElement(props: PolygonElementProps): import("react/jsx-runtime").JSX.Element | null;
