import { FlowExecutor, Flow } from '../index'; /** * This example demonstrates how to use the event emitter functionality * of the FlowExecutor to get streamed results during flow execution. */ declare const flow: Flow; declare const executor: FlowExecutor; declare function runFlow(): Promise | null>; declare function runWithMinimalEvents(): Promise>; export { flow, executor, runFlow, runWithMinimalEvents };