import { OnInit } from '@angular/core'; import { HttpService } from '../../services/http/http-service.service'; import { CommonService } from '../../services/common/common.service'; import { StepConfig } from '../../entities/step-config'; export declare class SStepsComponent implements OnInit { private httpService; private commonService; stepsObj: StepConfig; constructor(httpService: HttpService, commonService: CommonService); stepsDataList: any[]; testData: { createTime: string; bizTraceCorrelationCode: string; bizTraceType: string; bizTraceStep: string; bizTraceMessage: string; bizTraceData: { showIcon: string; creatorName: string; creatorType: string; creatorId: string; }; bizTraceChanges: { fieldName: string; fieldCode: string; valueOriginal: string; valueCurrent: string; permissionInfo: string; message: string; }[]; bizTraceActions: { actionName: string; actionType: string; actionUrl: string; actionContent: { a: number; b: number; }; }[]; }[]; ngOnInit(): void; getStepsData(): Promise; initStepsData(data: any): void; btnClick(obj: any): void; setDefaultAttrs(): void; }