/// import { ChildProcess } from "child_process"; export declare const executeCommand: (command: string) => string; export declare const cleanup: () => void; /** * In AWS when we properly kill the process termination gets logged in stderr with a weird log */ export declare const canIgnoreAwsTerminationError: (log: string) => boolean; export declare const executeAsync: (command: string, { logStderr }?: { logStderr: boolean; }) => ChildProcess; export declare const executeLongRunningProcess: (command: string, delimiter: string, onData: (data: string) => void) => ChildProcess;