import { Request, Response } from 'express'; export declare class KeyboardAPI { static pressEscape(req: Request, res: Response): Promise; static pressTab(req: Request, res: Response): Promise; static pressBackspace(req: Request, res: Response): Promise; static pressEnter(req: Request, res: Response): Promise; static pressDelete(req: Request, res: Response): Promise; static writeText(req: Request, res: Response): Promise; }