import type { Point } from '../../types'; import type { RulerAnnotation } from '../../types'; declare const useRulerAnnotation: ({ startAndEndPoint, measuredValue, unit, textPoint }: RulerAnnotation) => { rulerLine: string; ref: (ref: SVGTextElement) => void; connectingLine: string; formattedValue: string; textBoxPoint: Point; visibility: "visible" | "hidden"; }; export default useRulerAnnotation;