declare type MouseEvent = 'mousedown' | 'mouseup' | 'mousemove' | 'click'; declare type TouchEvent = 'touchstart' | 'touchend' | 'touchmove' | 'touchend'; export default function unit_event(event_name: MouseEvent | TouchEvent): string; export {};