///
export interface UpdatePositionHandler {
(h: number, v: number, active: boolean, rect: ClientRect, moved: boolean): Boolean;
}
export declare function trackTouch(e: React.TouchEvent, changed: UpdatePositionHandler, context?: Window & typeof globalThis): void;
export declare function trackMouse(e: React.MouseEvent, changed: UpdatePositionHandler, context?: Window & typeof globalThis): void;