/** * Split a string, by spaces, ASCII quotes and CJK quotes * @param string The string for splitting */ export declare function split(string: string): string[]; /** * escape a string so that it is a legal command argument * @param str The string that needs to be escaped */ export declare function escapeArgument(str: string): string;