import type { Flow, FlowState } from '../types/flow.js'; import type { RunState } from '../runtime/durable/types.js'; export declare function currentFlowState(run: RunState): FlowState; export declare function enterFlowState(run: RunState, flow: Flow, source?: FlowState): FlowState; export declare function exportFlowState(flow: Flow, state: FlowState): Record;