import { Request, Response } from 'express'; export declare class ApplicationAPI { static start(req: Request, res: Response): Promise; static stop(req: Request, res: Response): Promise; static navigate(req: Request, res: Response): Promise; static getName(req: Request, res: Response): Promise; static getVersion(req: Request, res: Response): Promise; static getOperatingSystem(req: Request, res: Response): Promise; }