import type { FlowTest } from "./flowContextTypes.js"; export type FlowRunOptions = { test?: FlowTest; }; export type FlowRunFunction = (dependencies: Dependencies, options?: FlowRunOptions) => Promise; export type LegacyFlowDefinition = FlowRunFunction; export type FlowDefinition = { name: string; run: FlowRunFunction; target: Target; type: "flow"; version: 1; }; export type FlowApiReturnValue = LegacyFlowDefinition | FlowDefinition; //# sourceMappingURL=flowExportTypes.d.ts.map