import type { Ref } from 'react'; import type { StrokeStyle } from './types/shape-style.js'; import type { EventHandlerProps, ShapeEvent } from './types/overlay-events.js'; /** 지도 위에 선을 그린다. path로 경로 좌표를 지정한다. */ export interface PolylineProps extends StrokeStyle, EventHandlerProps { ref?: Ref; path?: naver.maps.ArrayOfCoords | naver.maps.ArrayOfCoordsLiteral; defaultPath?: naver.maps.ArrayOfCoords | naver.maps.ArrayOfCoordsLiteral; startIcon?: naver.maps.PointingIcon; startIconSize?: number; endIcon?: naver.maps.PointingIcon; endIconSize?: number; clickable?: boolean; visible?: boolean; zIndex?: number; } export declare function Polyline({ ref, ...props }: PolylineProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=polyline.d.ts.map