/**
* Parses the raw command into an array of strings.
* @param commandArray Command string or list of command parts.
* @returns The command as an array of strings.
*/declareconstparseRawCommand: (commandArray: string[] | string) =>string[];
exportdefault parseRawCommand;