type StepReportStatus = "PENDING" | "IGNORED" | "IN_PROGRESS" | "SKIPPED" | "SUCCEEDED" | "FAILED"; type StepReportObject
= { status: StepReportStatus; details: Details | undefined; }; declare class StepReport
{ status: StepReportStatus; details: Details | undefined; setDetails(details: Details): void; inProgress(): void; ignore(): void; skip(): void; success(details?: Details): void; failure(details?: Details): void; isTerminated(): boolean; isSuccessful(): boolean; isFailure(): boolean; toObject(): StepReportObject
; } export { StepReport }; export type { StepReportStatus, StepReportObject }; //# sourceMappingURL=step-report.d.ts.map