import { Process } from "../../mappings/v1.0/Process"; import { CommandLineToolModel } from "./CommandLineToolModel"; import { CommandLineTool as SBDraft2CommandLineTool } from "../../mappings/d2sb/CommandLineTool"; import { CommandLineTool as V1CommandLineTool } from "../../mappings/v1.0/CommandLineTool"; export declare class CommandLineToolFactory { static from(tool?: V1CommandLineTool | SBDraft2CommandLineTool | Process, loc?: string): CommandLineToolModel; }