import { CommandArgumentModel } from "../generic/CommandArgumentModel"; import { CommandInputParameterModel } from "../generic/CommandInputParameterModel"; import { CommandLinePart, CommandType } from "./CommandLinePart"; export declare class CommandLinePrepare { static prepare(input: any, flatJobInputs: any, context: any, loc?: string, cmdType?: CommandType): Promise; static flattenInputsAndArgs(inputs: Array, context: any): Promise>; static flattenJob(job: any, master: any): any; }