interface GraphQueryOptions { iteration?: string; type?: 'all' | 'knowledge' | 'code'; limit?: number; /** v7.0.0+: 启用 LLM 语义增强(默认 true) */ smart?: boolean; } /** graph query — 自然语言查询 */ export declare function graphQueryCommand(question: string, options: GraphQueryOptions): Promise; /** graph render — 渲染 Mermaid 图表 */ export declare function graphRenderCommand(filePath: string | undefined, options: { all?: boolean; extract?: boolean; output?: string; }): Promise; /** graph entity — 查询特定实体 */ export declare function graphEntityCommand(entityId: string, options: GraphQueryOptions): Promise; /** graph related — 查询关联实体 */ export declare function graphRelatedCommand(entityId: string, options: GraphQueryOptions): Promise; /** graph stats — 图谱统计 */ export declare function graphStatsCommand(options: GraphQueryOptions): Promise; /** graph path — 查找两实体间路径 */ export declare function graphPathCommand(from: string, to: string, options: GraphQueryOptions): Promise; export {}; //# sourceMappingURL=graph.d.ts.map