import { FlowExecutor, Flow } from '../index'; /** * This example demonstrates how to use the error handling features * of the FlowExecutor including retry policies and circuit breakers. */ declare const flow: Flow; declare const executor: FlowExecutor; declare function runFlow(): Promise | null>; export { flow, executor, runFlow };