import { PipelineResponse } from './pipeline.actions'; import { YapTransfo } from '../components/pipeline-editor/pipeline.interface'; export declare const pipelineFeatureKey = "@yap/pipeline"; export interface PipelineState { selectedNode: string; checkResponse: PipelineResponse | undefined; transfos: YapTransfo[]; error: any; activeError: any; loading: boolean; } export declare const initialPipelineState: PipelineState; export declare const pipelineReducer: import("@ngrx/store").ActionReducer;