import { WorkflowStepInput } from "../../mappings/d2sb/WorkflowStepInput"; import { WorkflowStepInputModel } from "../generic/WorkflowStepInputModel"; import { SBDraft2StepModel } from "./SBDraft2StepModel"; export declare class SBDraft2WorkflowStepInputModel extends WorkflowStepInputModel { private _id; readonly id: string; /** * The connectionId used within the graph, prefix with "in/" because it refers to the */ readonly connectionId: string; /** * ID used for scatter * @returns {string} */ readonly destinationId: string; serialize(): WorkflowStepInput; deserialize(attr: WorkflowStepInput): void; constructor(input?: WorkflowStepInput, parentStep?: SBDraft2StepModel, loc?: string); }