import { MouseEvent, TouchEvent } from 'react'; import { EditorMode, IAnnotation, ISelectorMethods, SelectorMethodsOptions } from '../types'; export declare function pointerDown(annotation: IAnnotation | undefined, e: TouchEvent | MouseEvent, options: SelectorMethodsOptions, type: string): IAnnotation | undefined; export declare function pointerUp(annotation: IAnnotation | undefined, _e: TouchEvent | MouseEvent, editorMode: EditorMode): IAnnotation | undefined; export declare function pointerMove(annotation: IAnnotation | undefined, e: TouchEvent | MouseEvent): IAnnotation | undefined; export declare const createSelectorMethods: (type: string) => ISelectorMethods;