import type { ReferenceAnnotationCandidate } from '../decorations'; import type { RefLineAxes } from '../reference-line'; import type { RefLine, RefLineEvent } from '../types'; type $$ComponentProps = { ref_line: RefLine; line_idx: number; axes: RefLineAxes; clip_path_id: string; hovered_line_idx?: number | null; annotation_placement?: ReferenceAnnotationCandidate | null; on_click?: (event: RefLineEvent) => void; on_hover?: (event: RefLineEvent | null) => void; }; declare const ReferenceLine: import("svelte").Component<$$ComponentProps, {}, "">; type ReferenceLine = ReturnType; export default ReferenceLine;