import { Color } from "@dt/core-ui"; import { PointLocation } from "../../../ImageViewer/Models"; import { LinePaintObjectBase } from "./LinePaintObjectBase"; /** * Represents a drawable line with optional styled caps (e.g., arrow or dot). */ export declare class LinePaintObject extends LinePaintObjectBase<'line'> { constructor(startPosition: PointLocation, lineColor: Color, lineWidth: number, opacity: number); }