import type { Ref } from 'react'; import type { StrokeStyle, FillStyle } from './types/shape-style.js'; import type { EventHandlerProps, ShapeEvent } from './types/overlay-events.js'; /** 지도 위에 다각형을 그린다. paths로 꼭짓점 배열을 지정한다. */ export interface PolygonProps extends StrokeStyle, FillStyle, EventHandlerProps { ref?: Ref; paths?: naver.maps.ArrayOfCoords[] | naver.maps.ArrayOfCoordsLiteral[]; defaultPaths?: naver.maps.ArrayOfCoords[] | naver.maps.ArrayOfCoordsLiteral[]; clickable?: boolean; visible?: boolean; zIndex?: number; } export declare function Polygon({ ref, ...props }: PolygonProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=polygon.d.ts.map