export default PolylineAnnotation;
/**
 * Stateless SVG component responsible for rendering a single polyline annotation.
 * Receives fully resolved geometry and styling from the parent renderer and
 * performs no normalization, transformation, or time-based logic.
 */
declare function PolylineAnnotation({ points, stroke, strokeWidth, fill, opacity }: {
    points: any;
    stroke: any;
    strokeWidth: any;
    fill: any;
    opacity: any;
}): import("react/jsx-runtime").JSX.Element;
