import { Button } from "@nut-tree/nut-js"; import { Point, Region } from "../../common/types"; declare class MouseClickAction { #private; constructor(button: Button); times(amount: number): this; get double(): this; get triple(): this; get Alt(): this; get Ctrl(): this; get Meta(): this; get Shift(): this; at(x: number, y: number): Promise; at(point: Point): Promise; here(): Promise; center(region?: Region): Promise; center(region: { region: Region; }): Promise; } export default MouseClickAction;