import { IGraphNode, RunnableConfig } from '../../../graphs'; import { VisualizationGraphState } from '../state'; import { IDataSetStore } from '../..'; export declare class GetDatasetDataNode implements IGraphNode { private readonly store; constructor(store: IDataSetStore); execute(state: VisualizationGraphState, config: RunnableConfig): Promise; }