import { Observable } from "rxjs";
export interface NgxTReportsConfig {
    runPipeLine: ((pipeline: any[], workflowId: string) => Observable<any>);
    postToServer: ((url: string, data: any, options?: any) => Observable<any>);
    dataIntegration: () => Observable<Record<string, any>>;
}
