import { Request, Response } from 'express'; export declare class ActionAPI { static click(req: Request, res: Response): Promise; static rightClick(req: Request, res: Response): Promise; static moveTo(req: Request, res: Response): Promise; static clear(req: Request, res: Response): Promise; static write(req: Request, res: Response): Promise; static tap(req: Request, res: Response): Promise; static longPress(req: Request, res: Response): Promise; static scroll(req: Request, res: Response): Promise; static uploadFile(req: Request, res: Response): Promise; }