import { DynamicModule, OnModuleInit } from '@nestjs/common'; import { GraphService, GraphServiceConnectOptions } from './graph.service'; export declare const GRAPH_CONNECT_OPTIONS = "GRAPH_CONNECT_OPTIONS"; export declare class GraphModule implements OnModuleInit { private readonly graphService; constructor(graphService: GraphService); onModuleInit(): Promise; static registerAsync(options: GraphServiceConnectOptions): DynamicModule; }