import IOHandle from "../handles/IOHandle.js"; import { MouseButton } from "../../constants.js"; import { GlobalMouseEvent, Hook } from "../../types"; declare class MouseClickHook implements Hook { #private; constructor(button: MouseButton); get once(): this; get all(): this; get double(): this; get triple(): this; get alt(): this; get ctrl(): this; get meta(): this; get mod(): this; get shift(): this; do(handler: (e: GlobalMouseEvent) => void): IOHandle; } export default MouseClickHook;