import { MessengerUnit } from '../../interfaces/MessengerUnit.js'; import { Process } from './monitor/Process.js'; /** * This class is responsible for interacting with the following endpoints: * * - `{mu-url}/monitor/*` * * Methods within this class provide HTTP-like APIs. */ declare class Monitor { protected messenger_unit: MessengerUnit; constructor(messengerUnit: MessengerUnit); /** * @param processId The ID of the process to monitor. * @returns See {@linkcode Process} */ process(processId: string): Process; } export { Monitor };