import { JobPromise } from '../models'; import { InstallProcessResult } from './installProcessResult'; /** * Robot process model containing details of the robot process available in current system */ export declare class RobotProcess { id: string; name: string; description: string | undefined; /** * Default constructor * @param id Unique id of the robot process * @param name Robot Process name * @param description Process Description */ constructor(id: string, name: string, description?: string | undefined); /** * Start the robot process * @param inArguments JSON object. In arguments to be passed to the robot if any. */ start: (inArguments?: any) => JobPromise; /** * Install the robot process */ install: () => Promise; }