import { BehaviorSubject } from "rxjs"; export declare class BashService { private programDir; constructor(); execWrapper(commandLine: string): Promise; execWrapperWithSeparatedErrors(commandLine: string): Promise<{ stdout: string; stderr: string; }>; spawn(executableAbsolutePath: string, flags: string[]): Promise<{ logs: any[]; checkIsAlive: () => Promise; status: string; stop: () => void; event: BehaviorSubject<{ key: string; value: any; }>; }>; }