import { Button } from "@nut-tree/nut-js"; import { Point, Region } from "../../common/types"; declare type Variant = "pressButton" | "releaseButton"; declare class MousePressReleaseAction { #private; constructor(action: Variant, button: Button); 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 MousePressReleaseAction;