import type { Flow } from '../../types/flow.js'; import type { FlowDefinition } from './types.js'; export declare const STORABLE_FLOW_DEFINITION: unique symbol; export declare function stashFlowDefinition(flow: Flow, def: FlowDefinition): Flow; export declare function readStashedFlowDefinition(flow: Flow): FlowDefinition | undefined;