import type { ReactNode, SVGProps } from 'react'; export type PolygonProps = { /** Override render function which is provided polygon and generated path. */ children?: ({ path, polygon }: { path: string; polygon: [number, number][]; }) => ReactNode; /** className to apply to path element. */ className?: string; /** Array of coordinate arrays for the polygon (e.g., [[x,y], [x1,y1], ...]), used to generate polygon path. */ polygon?: [number, number][]; }; export default function Polygon({ polygon, className, children, ...restProps }: PolygonProps & Omit, keyof PolygonProps>): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=Polygon.d.ts.map