import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { PlanResponse } from "./PlanResponse"; import { Scriptable } from "../imports/Scriptable"; export declare class Flow { constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); static startAsync( scopedFlowName?: string, scriptInputs?: Scriptable ): PlanResponse; }