/** * * @param {string} command the command to run * @param {string[]} args the arguments to pass the command * @returns {Promise} Promise of output message */ export function runCommand(command: string, args: string[]): Promise;