import type { CommandModule } from 'yargs'; interface GraphArgs { synth?: boolean; outDir?: string; output?: 'summary' | 'mermaid' | 'json'; file?: string; } export declare const graphCommand: CommandModule, GraphArgs>; export {};