import { IGraphNode, RunnableConfig } from '../../../graphs'; import { DbQueryGraph } from '../../db-query'; import { VisualizationGraphState } from '../state'; export declare class CallQueryGenerationNode implements IGraphNode { private readonly queryPipeline; constructor(queryPipeline: DbQueryGraph); execute(state: VisualizationGraphState, config: RunnableConfig): Promise; }