/** One step from an operation */
export interface OperationStep {
    /** Description of the step */
    description: string;
    /** Execution time of the step */
    executionDuration: number;
    /** Name of the step */
    step: string;
}
//# sourceMappingURL=OperationStep.d.ts.map