/** * Call Graph Runner - Builds the call graph using native Rust or TypeScript fallback * * @module commands/setup/runners/callgraph */ import { BaseRunner, type RunnerContext } from './base.js'; import type { FeatureResult } from '../types.js'; export declare class CallGraphRunner extends BaseRunner { constructor(ctx: RunnerContext); get name(): string; get icon(): string; get description(): string; get benefit(): string; get manualCommand(): string; run(): Promise; } //# sourceMappingURL=callgraph.d.ts.map