import type { Types } from '@cornerstonejs/core'; import type { SVGDrawingHelper } from '../types'; declare function drawCircle(svgDrawingHelper: SVGDrawingHelper, annotationUID: string, circleUID: string, center: Types.Point2, radius: number, options?: {}, dataId?: string): void; export default drawCircle;