import type { Flow } from '../../../types/flow.js'; import { type StructureGraph } from './structure.js'; import type { FlowValidationIssue } from './types.js'; export declare function projectCodeFlow(flow: Flow): { graph: StructureGraph; issues: FlowValidationIssue[]; }; export declare function assertValidCodeFlow(flow: Flow): void;