/** * 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. */ declare const parseRawCommand: (commandArray: string[] | string) => string[]; export default parseRawCommand;