export declare type CommandType = "baseCommand" | "input" | "argument" | "stdin" | "stdout" | "error" | "warning"; export declare class CommandLinePart { value: string; loc: string; type: CommandType; constructor(value: string, type: CommandType, loc?: string); }