import { HandleClick } from './types'; /** * 相同的目标节点 * @example * ```ts * import { useSameTarget } from 'mine-h5-ui' * * const { onClick, onMousedown, onMouseup } = useSameTarget((e: PointerEvent) => { * console.log(e) // PointerEvent{ isTrusted: true, _vts: 1733714310245, pointerId: 1, width: 1, height: 1,…} * }) * ``` */ export declare const useSameTarget: (handleClick: HandleClick) => { onMousedown: (e: MouseEvent) => void; onMouseup: (e: MouseEvent) => void; onClick: (e: Event) => void; };