import type Hammer from 'hammerjs';
import type { Five, Intersection } from '@realsee/five';
/** 通过鼠标事件或者触摸事件，获取当前点击屏幕关联的射线与模型的交点 */
export declare function getIntersectionFromEvent(five: Five, event: (typeof Hammer)['Input']): Intersection[];
