import { h } from '@logicflow/core'; export default function Polygon({ fillOpacity, strokeWidth, strokeOpacity, fill, stroke, points, className, }: { fillOpacity?: number; strokeWidth?: number; strokeOpacity?: number; fill?: string; stroke?: string; points: any; className?: string; }): h.JSX.Element;