import { Response, RobotProcess } from '../../models'; import { IRequest } from '../iRequest'; export declare class RobotProcessRequest implements IRequest> { url: string; /** * Default constructor */ constructor(); /** * Request method to get all published robots in local machine. * @returns Promise of type Response. */ send: () => Promise>>; /** * Set the port to which the request should be sent along with the consent code. * @param robotInvocationPort Port on which local listener is running. * @param consentCode User consented code. */ set: (robotInvocationPort: number, consentCode: number) => this; private convertToRobotProcesses; /** * Method that returns the request endpoint to which request will be sent. * @param robotInvocationPort Port of local listener to which request should be sent. * @param consentCode User approved consent code if any. */ private getURL; }