import { HttpService } from './http.service'; import { FlowChartRef } from '../components/base/context.component'; import * as i0 from "@angular/core"; export interface FlowchartProcessRequestData { loadingIndicator?: boolean; channel: string; room: string; processorMethod: string; namedInputs: { [key: string]: any; }; id?: string; data: { [key: string]: any; }; dbData?: { [key: string]: any; }; } export interface FlowchartProcessorDetailData { data: any; } export interface FlowchartGenericResponseData { status: string; message?: string; response?: FlowchartProcessorDetailData | any; } export declare class FlowchartService { private httpService; constructor(httpService: HttpService); loadFlowchart(payload: FlowChartRef): Promise; process(payload: FlowchartProcessRequestData, rawJson?: boolean): Promise; introspect(payload: any): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }