import type Database from 'better-sqlite3'; import type { CallGraphEdge } from '../../schema.js'; /** * Shared call graph query used by interaction, module, and graph repositories. * The only difference is whether JSX contexts are included. */ export declare function queryCallGraphEdges(db: Database.Database, opts?: { includeJsx?: boolean; }): CallGraphEdge[]; //# sourceMappingURL=call-graph-query.d.ts.map