import type { Types } from '@cornerstonejs/core'; import type { SVGDrawingHelper } from '../types/index.js'; export default function drawPath(svgDrawingHelper: SVGDrawingHelper, annotationUID: string, pathUID: string, points: Types.Point2[] | Types.Point2[][], options: { color?: string; fillColor?: string; fillOpacity?: number; strokeOpacity?: number; width?: number; lineWidth?: number; lineDash?: string; lineCap?: 'butt' | 'round' | 'square'; lineJoin?: 'miter' | 'round' | 'bevel'; closePath?: boolean; }): void;