import { LoggerService } from 'src/shared/logger.service'; import { BashService } from 'src/shared/bash.service'; export declare class SshController { private loggerService; private bashService; path: string; constructor(loggerService: LoggerService, bashService: BashService); cmd(body: any): Promise<{ success: boolean; description: string; result: { stdout: any; stderr: string; }; } | { success: boolean; result: { stdout: string; stderr: string; }; description?: undefined; }>; }