import { Key, Button } from "@nut-tree-fork/nut-js"; declare function clickCurrentPosition(button?: Button): Promise; declare function moveAndClick(targetX: number, targetY: number, button?: string): Promise; declare function doubleClickAt(targetX: number, targetY: number, button?: Button): Promise; declare function pressSingleKey(targetKey: Key): Promise; declare function typeTextContent(text: string): Promise; declare function pressKeyCombination(modifierKeys: Key[], targetKey: Key): Promise; declare function holdKey(targetKey: Key, holdTimeMs?: number): Promise; declare function scrollByDistance(distance: number, step?: number): Promise; export { clickCurrentPosition, moveAndClick, doubleClickAt, pressSingleKey, typeTextContent, pressKeyCombination, holdKey, scrollByDistance };