/**
* Escape a string for use in a shell command
* @param valGiven The string to escape
* @param shouldEscapeSpace Whether to escape spaces in the string
*
* @private
*/
export declarefunctionescapeString(valGiven: string, shouldEscapeSpace?: boolean): string;