/** * GapFlowGenerator - Creates flows for uncovered interactions. * Groups uncovered interactions by source module and creates internal flows. */ import type { InteractionWithPaths } from '../../../db/schema.js'; import type { FlowSuggestion } from './types.js'; export declare class GapFlowGenerator { /** * Create gap flows for interactions not covered by entry point flows. * Only considers runtime interactions (ast-import already filtered upstream). */ createGapFlows(coveredIds: Set, allInteractions: InteractionWithPaths[], moduleEntityMap?: Map): FlowSuggestion[]; } //# sourceMappingURL=gap-flow-generator.d.ts.map