export interface GraphOptions { target?: string; depth?: number; skipServer?: boolean; } export interface GraphOutput { nodes: unknown[]; edges: unknown[]; } export declare function getGraph(options?: GraphOptions): Promise; //# sourceMappingURL=graph.d.ts.map