import { Annotation } from '@annotorious/core'; import { SvelteImageAnnotationStore } from '../state'; export interface SVGAnnotationLayerPointerEvent { originalEvent: PointerEvent; annotation?: T; } export declare const addEventListeners: (svg: SVGSVGElement, store: SvelteImageAnnotationStore) => { onPointerDown: () => number; onPointerUp: (evt: PointerEvent) => void; }; export declare const getSVGPoint: (evt: PointerEvent, svg: SVGSVGElement) => DOMPoint;