export declare enum Button { LEFT = 0, RIGHT = 1, MIDDLE = 2 } declare function button(e: MouseEvent): Button; export declare const mouse: { button: typeof button; Button: typeof Button; }; export {};